赞
踩
Android中TextView设置文本或富文本的时候出现没有到头就换行的问题.
网上有很多相关内容. 但大多都是关于文本换行的情况, 对于有富文本内容的情况, 如设置Spanned对象的内容, 会出现颜色等内容丢失的情况. 在此基础上添加富文本内容的处理. 之前代码不知道原出处在哪, 在此借用一下.
如图显示内容:
废话少说, 上菜~~~~~~
1.对TextView进行监听.
- private void initAutoSplitTextView() {
- mContent.getViewTreeObserver().addOnGlobalLayoutListener(new ViewTreeObserver.OnGlobalLayoutListener() {
- @Override
- public void onGlobalLayout() {
- mContent.getViewTreeObserver().removeOnGlobalLayoutListener(this);
- final CharSequence newText = autoSplitText(mContent);
- if (!TextUtils.isEmpty(newText)) {
- mContent.setText(newText);
- }
- }
- });
- }
2.对TextView显示内容的拆分.
- //返回CharSequence对象
- private CharSequence autoSplitText(final TextView tv) {
- //tv.getText(), 原始的CharSequence内容.
- CharSequence charSequence = tv.getText();
- final String rawText = tv.getText().toString(); //原始文本
- final Paint tvPaint = tv.getPaint(); //paint,包含字体等信息
- final float tvWidth = tv.getWidth() - tv.getPaddingLeft() - tv.getPaddingRight(); //控件可用宽度
-
- //将原始文本按行拆分
- 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);
- lineWidth += tvPaint.measureText(String.valueOf(ch));
- if (lineWidth <= tvWidth) {
- sbNewText.append(ch);
- } else {
- sbNewText.append("\n");
- lineWidth = 0;
- --cnt;
- }
- }
- }
- sbNewText.append("\n");
- }
-
- //把结尾多余的\n去掉
- if (!rawText.endsWith("\n")) {
- sbNewText.deleteCharAt(sbNewText.length() - 1);
- }
-
- //对于有富文本的情况
- if (charSequence instanceof Spanned) {
- SpannableStringBuilder spannableStringBuilder = new SpannableStringBuilder(charSequence);
- if (sbNewText.toString().contains("\n")) {
- String[] split = sbNewText.toString().split("\n");
- int tempIndex = 0;
- for (int i = 0; i < split.length; i++) {
- if (i != split.length - 1) {
- String s = split[i];
- tempIndex = tempIndex + s.length() + i;
- spannableStringBuilder.insert(tempIndex, "\n");
- }
- }
- }
- return spannableStringBuilder;
- } else {
- return sbNewText;
- }
-
- }
随手Mark, 如有问题留言一块探讨.
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。