Skip to content

Commit

Permalink
see 10/30 log
Browse files Browse the repository at this point in the history
  • Loading branch information
Blankj committed Oct 30, 2018
1 parent 96812c0 commit e9fe917
Show file tree
Hide file tree
Showing 3 changed files with 189 additions and 98 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,13 @@
import android.animation.ValueAnimator;
import android.content.Context;
import android.content.Intent;
import android.graphics.BitmapFactory;
import android.graphics.BitmapShader;
import android.graphics.BlurMaskFilter;
import android.graphics.Color;
import android.graphics.LinearGradient;
import android.graphics.Matrix;
import android.graphics.Shader;
import android.graphics.Typeface;
import android.os.Bundle;
import android.support.annotation.Nullable;
import android.support.v4.content.ContextCompat;
import android.text.Layout;
import android.text.SpannableStringBuilder;
import android.text.TextPaint;
import android.text.method.LinkMovementMethod;
Expand Down Expand Up @@ -106,80 +101,84 @@ public void updateDrawState(TextPaint ds) {
textSize = tvAboutSpan.getTextSize();
density = getResources().getDisplayMetrics().density;

initAnimSpan();
startAnim();
// initAnimSpan();
// startAnim();


tvAboutSpan.setText(new SpanUtils()
.appendImage(R.drawable.shape_spannable_block_high, SpanUtils.ALIGN_TOP)
.append("大图").setBackgroundColor(Color.LTGRAY)
.appendImage(R.drawable.shape_spannable_block_high, SpanUtils.ALIGN_TOP)
.append("顶部").setBackgroundColor(Color.LTGRAY)
.appendImage(R.drawable.shape_spannable_block_high, SpanUtils.ALIGN_TOP)
.appendLine("对齐").setBackgroundColor(Color.LTGRAY)

.appendImage(R.drawable.shape_spannable_block_high, SpanUtils.ALIGN_CENTER)
.append("大图").setBackgroundColor(Color.GREEN)
.appendImage(R.drawable.shape_spannable_block_high, SpanUtils.ALIGN_CENTER)
.append("居中").setBackgroundColor(Color.GREEN)
.appendImage(R.drawable.shape_spannable_block_high, SpanUtils.ALIGN_CENTER)
.appendLine("对齐").setBackgroundColor(Color.GREEN)

.appendImage(R.drawable.shape_spannable_block_high, SpanUtils.ALIGN_BOTTOM)
.append("大图").setBackgroundColor(Color.LTGRAY)
.appendImage(R.drawable.shape_spannable_block_high, SpanUtils.ALIGN_BOTTOM)
.append("底部").setBackgroundColor(Color.LTGRAY)
.appendImage(R.drawable.shape_spannable_block_high, SpanUtils.ALIGN_BOTTOM)
.appendLine("对齐").setBackgroundColor(Color.LTGRAY)

.appendLine("SpanUtils").setBackgroundColor(Color.LTGRAY).setBold().setForegroundColor(Color.YELLOW).setAlign(Layout.Alignment.ALIGN_CENTER)
.appendLine("前景色").setForegroundColor(Color.GREEN)
.appendLine("背景色").setBackgroundColor(Color.LTGRAY)
.appendLine("行高顶部对齐").setLineHeight(2 * lineHeight, SpanUtils.ALIGN_TOP).setBackgroundColor(Color.GREEN)
.appendLine("行高居中对齐").setLineHeight(2 * lineHeight, SpanUtils.ALIGN_CENTER).setBackgroundColor(Color.LTGRAY)
.appendLine("行高底部对齐").setLineHeight(2 * lineHeight, SpanUtils.ALIGN_BOTTOM).setBackgroundColor(Color.GREEN)
.appendLine("测试段落缩,首行缩进两字,其他行不缩进").setLeadingMargin((int) textSize * 2, 10).setBackgroundColor(Color.GREEN)
.appendLine("测试引用,后面的字是为了凑到两行的效果").setQuoteColor(Color.GREEN, 10, 10).setBackgroundColor(Color.LTGRAY)
.appendLine("测试列表项,后面的字是为了凑到两行的效果").setBullet(Color.GREEN, 20, 10).setBackgroundColor(Color.LTGRAY).setBackgroundColor(Color.GREEN)
.appendLine("32dp 字体").setFontSize(32, true)
.appendLine("2 倍字体").setFontProportion(2)
.appendLine("横向 2 倍字体").setFontXProportion(1.5f)
.appendLine("删除线").setStrikethrough()
.appendLine("下划线").setUnderline()
.append("测试").appendLine("上标").setSuperscript()
.append("测试").appendLine("下标").setSubscript()
.appendLine("粗体").setBold()
.appendLine("斜体").setItalic()
.appendLine("粗斜体").setBoldItalic()
.appendLine("monospace 字体").setFontFamily("monospace")
.appendLine("自定义字体").setTypeface(Typeface.createFromAsset(getAssets(), "fonts/dnmbhs.ttf"))
.appendLine("相反对齐").setAlign(Layout.Alignment.ALIGN_OPPOSITE)
.appendLine("居中对齐").setAlign(Layout.Alignment.ALIGN_CENTER)
.appendLine("正常对齐").setAlign(Layout.Alignment.ALIGN_NORMAL)
.append("测试").appendLine("点击事件").setClickSpan(clickableSpan)
.append("测试").appendLine("Url").setUrl("https://github.com/Blankj/AndroidUtilCode")
.append("测试").appendLine("模糊").setBlur(3, BlurMaskFilter.Blur.NORMAL)
.appendLine("颜色渐变").setShader(new LinearGradient(0, 0,
64 * density * 4, 0,
getResources().getIntArray(R.array.rainbow),
null,
Shader.TileMode.REPEAT)).setFontSize(64, true)
.appendLine("图片着色").setFontSize(64, true).setShader(new BitmapShader(BitmapFactory.decodeResource(getResources(), R.drawable.span_cheetah),
Shader.TileMode.REPEAT,
Shader.TileMode.REPEAT))
.appendLine("阴影效果").setFontSize(64, true).setBackgroundColor(Color.BLACK).setShadow(24, 8, 8, Color.WHITE)

.append("小图").setBackgroundColor(Color.GREEN)
.appendImage(R.drawable.shape_spannable_block_low, SpanUtils.ALIGN_TOP)
.append("顶部").setBackgroundColor(Color.GREEN)
.appendImage(R.drawable.shape_spannable_block_low, SpanUtils.ALIGN_CENTER)
.append("居中").setBackgroundColor(Color.GREEN)
.appendImage(R.drawable.shape_spannable_block_low, SpanUtils.ALIGN_BASELINE)
.append("底部").setBackgroundColor(Color.GREEN)
.appendImage(R.drawable.shape_spannable_block_low, SpanUtils.ALIGN_BOTTOM)
.appendLine("对齐").setBackgroundColor(Color.GREEN)

.append("测试空格").appendSpace(30, Color.LTGRAY).appendSpace(50, Color.GREEN).appendSpace(100).appendSpace(30, Color.LTGRAY).appendSpace(50, Color.GREEN)
// .appendImage(R.drawable.shape_spannable_block_high, SpanUtils.ALIGN_TOP)
// .append("大图").setBackgroundColor(Color.LTGRAY)
// .appendImage(R.drawable.shape_spannable_block_high, SpanUtils.ALIGN_TOP)
// .append("顶部").setBackgroundColor(Color.LTGRAY)
// .appendImage(R.drawable.shape_spannable_block_high, SpanUtils.ALIGN_TOP)
// .appendLine("对齐").setBackgroundColor(Color.LTGRAY)
//
// .appendImage(R.drawable.shape_spannable_block_high, SpanUtils.ALIGN_CENTER)
// .append("大图").setBackgroundColor(Color.GREEN)
// .appendImage(R.drawable.shape_spannable_block_high, SpanUtils.ALIGN_CENTER)
// .append("居中").setBackgroundColor(Color.GREEN)
// .appendImage(R.drawable.shape_spannable_block_high, SpanUtils.ALIGN_CENTER)
// .appendLine("对齐").setBackgroundColor(Color.GREEN)
//
// .appendImage(R.drawable.shape_spannable_block_high, SpanUtils.ALIGN_BOTTOM)
// .append("大图").setBackgroundColor(Color.LTGRAY)
// .appendImage(R.drawable.shape_spannable_block_high, SpanUtils.ALIGN_BOTTOM)
// .append("底部").setBackgroundColor(Color.LTGRAY)
// .appendImage(R.drawable.shape_spannable_block_high, SpanUtils.ALIGN_BOTTOM)
// .appendLine("对齐").setBackgroundColor(Color.LTGRAY)
//
// .appendLine("SpanUtils").setBackgroundColor(Color.LTGRAY).setBold().setForegroundColor(Color.YELLOW).setAlign(Layout.Alignment.ALIGN_CENTER)
// .appendLine("前景色").setForegroundColor(Color.GREEN)
// .appendLine("背景色").setBackgroundColor(Color.LTGRAY)
.append("行高顶部对齐").setLineHeight(3 * lineHeight, SpanUtils.ALIGN_TOP).setFontSize(20).setBackgroundColor(Color.GREEN)
.append("行高").setLineHeight(3 * lineHeight, SpanUtils.ALIGN_CENTER).setFontSize(40).setBackgroundColor(Color.LTGRAY)
.appendLine("行高顶部").setLineHeight(3 * lineHeight, SpanUtils.ALIGN_BOTTOM).setFontSize(60).setBackgroundColor(Color.LTGRAY)
.append("行高").setFontSize(100).setBackgroundColor(Color.GREEN)
.append("行高").setFontSize(20).setBackgroundColor(Color.LTGRAY).setUnderline().setVerticalAlign(SpanUtils.ALIGN_CENTER)
// .appendLine("行高居中对齐").setLineHeight(2 * lineHeight, SpanUtils.ALIGN_CENTER).setBackgroundColor(Color.LTGRAY)
// .appendLine("行高底部对齐").setLineHeight(2 * lineHeight, SpanUtils.ALIGN_BOTTOM).setBackgroundColor(Color.GREEN)
// .appendLine("测试段落缩,首行缩进两字,其他行不缩进").setLeadingMargin((int) textSize * 2, 10).setBackgroundColor(Color.GREEN)
// .appendLine("测试引用,后面的字是为了凑到两行的效果").setQuoteColor(Color.GREEN, 10, 10).setBackgroundColor(Color.LTGRAY)
// .appendLine("测试列表项,后面的字是为了凑到两行的效果").setBullet(Color.GREEN, 20, 10).setBackgroundColor(Color.LTGRAY).setBackgroundColor(Color.GREEN)
// .appendLine("32dp 字体").setFontSize(32, true)
// .appendLine("2 倍字体").setFontProportion(2)
// .appendLine("横向 2 倍字体").setFontXProportion(1.5f)
// .appendLine("删除线").setStrikethrough()
// .appendLine("下划线").setUnderline()
// .append("测试").appendLine("上标").setSuperscript()
// .append("测试").appendLine("下标").setSubscript()
// .appendLine("粗体").setBold()
// .appendLine("斜体").setItalic()
// .appendLine("粗斜体").setBoldItalic()
// .appendLine("monospace 字体").setFontFamily("monospace")
// .appendLine("自定义字体").setTypeface(Typeface.createFromAsset(getAssets(), "fonts/dnmbhs.ttf"))
// .appendLine("相反对齐").setAlign(Layout.Alignment.ALIGN_OPPOSITE)
// .appendLine("居中对齐").setAlign(Layout.Alignment.ALIGN_CENTER)
// .appendLine("正常对齐").setAlign(Layout.Alignment.ALIGN_NORMAL)
// .append("测试").appendLine("点击事件").setClickSpan(clickableSpan)
// .append("测试").appendLine("Url").setUrl("https://github.com/Blankj/AndroidUtilCode")
// .append("测试").appendLine("模糊").setBlur(3, BlurMaskFilter.Blur.NORMAL)
// .appendLine("颜色渐变").setShader(new LinearGradient(0, 0,
// 64 * density * 4, 0,
// getResources().getIntArray(R.array.rainbow),
// null,
// Shader.TileMode.REPEAT)).setFontSize(64, true)
// .appendLine("图片着色").setFontSize(64, true).setShader(new BitmapShader(BitmapFactory.decodeResource(getResources(), R.drawable.span_cheetah),
// Shader.TileMode.REPEAT,
// Shader.TileMode.REPEAT))
// .appendLine("阴影效果").setFontSize(64, true).setBackgroundColor(Color.BLACK).setShadow(24, 8, 8, Color.WHITE)
//
// .append("小图").setBackgroundColor(Color.GREEN)
// .appendImage(R.drawable.shape_spannable_block_low, SpanUtils.ALIGN_TOP)
// .append("顶部").setBackgroundColor(Color.GREEN)
// .appendImage(R.drawable.shape_spannable_block_low, SpanUtils.ALIGN_CENTER)
// .append("居中").setBackgroundColor(Color.GREEN)
// .appendImage(R.drawable.shape_spannable_block_low, SpanUtils.ALIGN_BASELINE)
// .append("底部").setBackgroundColor(Color.GREEN)
// .appendImage(R.drawable.shape_spannable_block_low, SpanUtils.ALIGN_BOTTOM)
// .appendLine("对齐").setBackgroundColor(Color.GREEN)
//
// .append("测试空格").appendSpace(30, Color.LTGRAY).appendSpace(50, Color.GREEN).appendSpace(100).appendSpace(30, Color.LTGRAY).appendSpace(50, Color.GREEN)
.create());
}

Expand Down Expand Up @@ -261,7 +260,9 @@ public void onWidgetClick(View view) {

@Override
protected void onDestroy() {
valueAnimator.cancel();
if (valueAnimator != null && valueAnimator.isRunning()) {
valueAnimator.cancel();
}
super.onDestroy();
}
}
1 change: 1 addition & 0 deletions app/src/main/res_core/layout/activity_span.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
android:padding="@dimen/spacing_16">

<TextView
android:background="@color/light_black"
android:id="@+id/tv_about_anim_span"
style="@style/TextStyle"
android:layout_width="match_parent"
Expand Down
Loading

0 comments on commit e9fe917

Please sign in to comment.