XML:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:id="@+id/tv_indent"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</LinearLayout>
代码:
- autoSplitText(tv,indent):该方法用来切割字符串,在需要换行的文本处添加换行符和缩进空格。
private String autoSplitText(final TextView tv, final String indent) {
final String rawText = tv.getText().toString();
final Paint tvPaint = tv.getPaint();
final float tvWidth = tv.getWidth() - tv.getPaddingLeft() - tv.getPaddingRight();
String indentSpace = "";
float indentWidth = 0;
if (!TextUtils.isEmpty(indent)) {
float rawIndentWidth = tvPaint.measureText(indent);
if (rawIndentWidth < tvWidth) {
while ((indentWidth = tvPaint.measureText(indentSpace)) < rawIndentWidth) {
indentSpace += " ";
}
indentSpace = indentSpace.substring(0, indentSpace.length() - 1);
}
}
String[] rawTextLines = rawText.replaceAll("\r", "").split("\n");
StringBuilder sbNewText = new StringBuilder();
for (String rawTextLine : rawTextLines) {
if (tvPaint.measureText(rawTextLine) <= tvWidth) {
sbNewText.append(rawTextLine);
} else {
float lineWidth = 0;
for (int cnt = 0; cnt != rawTextLine.length(); ++cnt) {
char ch = rawTextLine.charAt(cnt);
if (lineWidth < 0.1f && cnt != 0) {
sbNewText.append(indentSpace);
lineWidth += indentWidth;
}
lineWidth += tvPaint.measureText(String.valueOf(ch));
if (lineWidth <= tvWidth) {
sbNewText.append(ch);
} else {
sbNewText.append("\n");
lineWidth = 0;
--cnt;
}
}
}
sbNewText.append("\n");
}
if (!rawText.endsWith("\n")) {
sbNewText.deleteCharAt(sbNewText.length() - 1);
}
return sbNewText.toString();
}
}
- 使用:
- 注册一个观察者来监听视图,当视图树的布局发生改变或者View在视图树的可见状态发生改变时会调用的接口ViewTreeObserver.OnGlobalLayoutListener()。
- 并且在ViewTreeObserver.OnGlobalLayoutListener()回调函数中设置SpannableStringBuilder点击也不会有冲突。
final TextView tvIndent = (TextView) findViewById(R.id.tv_indent);
String upgradeContent = "1,Google LLC 是一家美国跨国科技公司,专门从事互联网相关服务和产品,包括在线广告技术,搜索引擎,云计算,软件和硬件。\n2,Google由Larry Page和Sergey Brin于1998年创立,当时他们是博士。学生在斯坦福大学在加州。\n3,他们共同拥有约14%的股份,并通过超级投票控制56%的股东投票权股票。\n4,他们于1998年9月4日将Google合并为一家私营公司。\n5,2004年8月19日首次公开募股(IPO),谷歌搬到位于加利福尼亚州山景城的总部,绰号为Googleplex。\n6,2015年8月,谷歌宣布计划重组其作为一家名为Alphabet Inc.的企业集团的各种利益。谷歌是Alphabet的主要子公司,并将继续成为Alphabet互联网利益的保护伞公司。\n7,Sundar Pichai被任命为Google首席执行官,取代Larry Page成为Alphabet的首席执行官。";
tvIndent.setText(upgradeContent);
tvIndent.getViewTreeObserver().addOnGlobalLayoutListener(new ViewTreeObserver.OnGlobalLayoutListener() {
@RequiresApi(api = Build.VERSION_CODES.JELLY_BEAN)
@Override
public void onGlobalLayout() {
tvIndent.getViewTreeObserver().removeOnGlobalLayoutListener(this);
String indentTextDesc = autoSplitText(tvIndent, "1,");
String targetClick = "搜索引擎";
SpannableStringBuilder contentSpannableBuilder = new SpannableStringBuilder(indentTextDesc);
contentSpannableBuilder.setSpan(new ClickableSpan() {
@Override
public void onClick(View widget) {
Toast.makeText(MainActivity.this, "Toast 被点击", Toast.LENGTH_LONG).show();
}
@Override
public void updateDrawState(TextPaint ds) {
ds.setUnderlineText(true);
ds.setColor(Color.parseColor("#067ce4"));
ds.setFakeBoldText(true);
}
}, indentTextDesc.indexOf(targetClick), indentTextDesc.indexOf(targetClick) + targetClick.length(), Spanned.SPAN_INCLUSIVE_INCLUSIVE);
tvIndent.setMovementMethod(LinkMovementMethod.getInstance());
tvIndent.setText(contentSpannableBuilder);
}
});
效果: