一、前言

在设计中经常出现一个长度不确定的文本,后面或是前面跟随一个或是多个标签。在网上查了很多资料,大部分的实现方式都是通过富文本来实现,不能满足多变的要求,标签要可以是图片,还可以是不同的文字,或者是一个布局,有时会加多个标签。后来想到了一种解决方法。将整个部分拆分成多个布局,自由组合,可以满足各种需求,无论标签有多少个,放在前面还是后面都可以实现。

二、具体实现

2.1 文字限制一行时,标签在文字后面

效果图:
文字较少时就像第一行这样,文字较多显示不下时就像二三行那样省略。
image.png

    1. 实现方法一,使用线性布局实现
      1. <LinearLayout
      2. android:layout_width="wrap_content"
      3. android:layout_height="wrap_content"
      4. android:orientation="horizontal">
      5. <TextView
      6. android:layout_width="0dp"
      7. android:layout_height="wrap_content"
      8. android:layout_weight="1"
      9. android:text="不宽度,不确定字数"
      10. android:singleLine="true"
      11. />
      12. <TextView
      13. android:layout_width="wrap_content"
      14. android:layout_height="wrap_content"
      15. android:text="跟随标签"
      16. android:background="@color/yellow_FF9B52"/>
      17. <TextView
      18. android:layout_width="wrap_content"
      19. android:layout_height="wrap_content"
      20. android:text="跟随标签2"
      21. android:background="@color/blue_74D3FF"/>
      22. </LinearLayout>
    1. 实现方法二,使用约束布局实现

      1. <androidx.constraintlayout.widget.ConstraintLayout
      2. android:layout_width="match_parent"
      3. android:layout_height="wrap_content">
      4. <TextView
      5. android:id="@+id/refund_name"
      6. android:layout_width="wrap_content"
      7. android:layout_height="wrap_content"
      8. android:singleLine="true"
      9. android:text="长数据长数据长数据长数据长数据长数据长数据长数据长数据"
      10. app:layout_constrainedWidth="true"
      11. app:layout_constraintBottom_toBottomOf="parent"
      12. app:layout_constraintHorizontal_bias="0"
      13. app:layout_constraintHorizontal_chainStyle="packed"
      14. app:layout_constraintLeft_toLeftOf="parent"
      15. app:layout_constraintRight_toLeftOf="@id/refund_mark_num"
      16. app:layout_constraintTop_toTopOf="parent" />
      17. <TextView
      18. android:id="@+id/refund_mark_num"
      19. android:layout_width="wrap_content"
      20. android:layout_height="wrap_content"
      21. android:background="@color/yellow_FF9B52"
      22. android:text="跟随标签"
      23. android:gravity="center"
      24. app:layout_constrainedWidth="true"
      25. app:layout_constraintLeft_toRightOf="@+id/refund_name"
      26. app:layout_constraintRight_toRightOf="parent"
      27. app:layout_constraintTop_toTopOf="parent" />
      28. </androidx.constraintlayout.widget.ConstraintLayout>

      2.2 文字多行有限制或者不限制行数,标签在文字后面

      效果图:

    1. 文字较少,只够一行时效果:

image.png

    1. 文字显示一行半时效果

image.png

    1. 文字两行显示不下时

image.png

    1. 实现思路:

以上面效果图为例,上面限制文字显示两行,第一行是一个单独的 TextView,第二行就是上面2.1 里面一行文字时实现的效果。当文字较少时,只显示一行,第一行的 TextView 隐藏即可。当文字超过一行少于两行时或者超过两行时,第一行的 TextView 设置显示一行就行,第二行的 TextView 设置显示剩下的文字内容。

    1. 具体的实现代码如下:

xml 文件:

  1. <TextView
  2. android:layout_width="wrap_content"
  3. android:layout_height="wrap_content"
  4. android:text="限制两行,后面跟随标签"
  5. android:textColor="@color/white"
  6. android:background="@color/red"
  7. />
  8. <androidx.constraintlayout.widget.ConstraintLayout
  9. android:layout_width="match_parent"
  10. android:layout_height="wrap_content"
  11. android:layout_marginHorizontal="@dimen/m15">
  12. <TextView
  13. android:id="@+id/tv_rl_test_tagOne"
  14. android:layout_width="match_parent"
  15. android:layout_height="wrap_content"
  16. android:text="长数据长数据长数据长据长数据长数据长数据长数据长数据长数据长数据长据长数据长数据长数据长数据"
  17. android:maxLines="1"
  18. android:textSize="13dp"
  19. app:layout_constraintTop_toTopOf="parent"
  20. />
  21. <TextView
  22. android:id="@+id/tv_rl_test_tagTwo"
  23. android:layout_width="wrap_content"
  24. android:layout_height="wrap_content"
  25. android:singleLine="true"
  26. android:text="长数据长数据长数据长数据长数据长数据长数据长数据长数据"
  27. app:layout_constrainedWidth="true"
  28. android:textSize="13dp"
  29. app:layout_constraintBottom_toBottomOf="parent"
  30. app:layout_constraintHorizontal_bias="0"
  31. app:layout_constraintHorizontal_chainStyle="packed"
  32. app:layout_constraintLeft_toLeftOf="parent"
  33. app:layout_constraintRight_toLeftOf="@id/tv_rl_test_twoTag"
  34. app:layout_constraintTop_toBottomOf="@+id/tv_rl_test_tagOne" />
  35. <TextView
  36. android:id="@+id/tv_rl_test_twoTag"
  37. android:layout_width="wrap_content"
  38. android:layout_height="wrap_content"
  39. android:background="@color/yellow_FF9B52"
  40. android:layout_marginLeft="3dp"
  41. android:layout_marginTop="2dp"
  42. android:gravity="center"
  43. android:paddingLeft="3dp"
  44. android:paddingTop="1dp"
  45. android:paddingRight="3dp"
  46. android:paddingBottom="1dp"
  47. android:text="标签"
  48. android:textSize="12dp"
  49. app:layout_constrainedWidth="true"
  50. app:layout_constraintLeft_toRightOf="@+id/tv_rl_test_tagTwo"
  51. app:layout_constraintRight_toRightOf="parent"
  52. app:layout_constraintTop_toBottomOf="@+id/tv_rl_test_tagOne" />
  53. </androidx.constraintlayout.widget.ConstraintLayout>

activity 部分:

  1. //要显示的数据源
  2. String tagSrc = "文字是人类用表意符号记录表达信息以传之久远的方式和工具。现代文字大多是记录语言的工具。人类往往先有口头的语言后产生书面文字,很多小语种,有语言但没有文字。文字的不同体现了国家和民族的书面表达的方式和思维不同。文字使人类进入有历史记录的文明社会。";
  3. TextView tvTagOnes = (TextView) findViewById(R.id.tv_rl_test_tagOne);
  4. TextView tvTagTwo = (TextView) findViewById(R.id.tv_rl_test_tagTwo);
  5. tvTagOnes.setText(tagSrc);
  6. tvTestOne.setText(tagSrc);
  7. //判断第一行是否可以完整显示
  8. tvTagOnes.post(new Runnable() {
  9. @Override
  10. public void run() {
  11. //获取第一个 textview 显示的内容
  12. String lineContent = Utils.INSTANCE.getTextLineContent(tvTagOnes, 0, tagSrc);
  13. LogUtils.e(tagSrc + "---------" + lineContent);
  14. if (TextUtils.equals(tagSrc,lineContent)){//可以显示完整
  15. tvTagOnes.setVisibility(View.GONE);
  16. tvTagTwo.setText(tagSrc);
  17. }else {//显示不完整,需要分行
  18. tvTagOnes.setVisibility(View.VISIBLE);
  19. String srcTwoContent = tagSrc.substring(lineContent.length(), tagSrc.length());
  20. tvTagTwo.setText(srcTwoContent);
  21. }
  22. }
  23. });

获取 TextView 显示的内容:

  1. /**
  2. * 获取textview某行内容
  3. */
  4. fun getTextLineContent(textView: TextView?, line: Int, src: String?): String {
  5. var result: String = ""
  6. if (textView == null || src.isNullOrEmpty()) {
  7. return result
  8. }
  9. LogUtils.e("$line--line-->${textView.lineCount}" )
  10. if (line > textView.lineCount) {
  11. return result
  12. }
  13. val layout = textView.layout
  14. val sb = StringBuilder(src)
  15. LogUtils.e("--start-${layout.getLineStart(line)}----end---${layout.getLineEnd(line)}")
  16. return sb.subSequence(layout.getLineStart(line), layout.getLineEnd(line)).toString()
  17. }

2.3 标签在文字前面时

效果图:
image.png
实现思路和上面标签在文字后面一样。第一行的标签是一个控件,标签后面的文字是一个单独的 TextView,第二行也是一个单独的 TextView。如果想限制文字行数,直接对第二行的 TextView 限制就行。
xml 布局:

  1. <!-- 前面跟随标签-->
  2. <TextView
  3. android:layout_width="wrap_content"
  4. android:layout_height="wrap_content"
  5. android:text="前面跟随标签"
  6. android:textColor="@color/white"
  7. android:background="@color/red"
  8. />
  9. <androidx.constraintlayout.widget.ConstraintLayout
  10. android:layout_width="match_parent"
  11. android:layout_height="wrap_content"
  12. android:layout_marginHorizontal="@dimen/m15">
  13. <TextView
  14. android:id="@+id/tv_rl_test_tagFront"
  15. android:layout_width="wrap_content"
  16. android:layout_height="wrap_content"
  17. android:text="标签"
  18. android:background="@color/yellow_FF9B52"
  19. app:layout_constraintTop_toTopOf="parent"
  20. app:layout_constraintStart_toStartOf="parent"/>
  21. <com.kiwilss.xview.widget.textview.AlignTextView
  22. android:id="@+id/tv_rl_test_frontOne"
  23. android:layout_width="0dp"
  24. android:layout_height="wrap_content"
  25. android:text="任意显示一行任意显示一行任意显示一行任意显示一行任意显示一行"
  26. app:layout_constraintTop_toTopOf="parent"
  27. app:layout_constraintStart_toEndOf="@+id/tv_rl_test_tagFront"
  28. android:maxLines="1"
  29. />
  30. <com.kiwilss.xview.widget.textview.AlignTextView
  31. android:id="@+id/tv_rl_test_frontTwo"
  32. android:layout_width="match_parent"
  33. android:layout_height="wrap_content"
  34. android:text="任意显示一行任意显示一行任意显示一行任意显示一行任意显示一行"
  35. app:layout_constraintTop_toBottomOf="@+id/tv_rl_test_tagFront"/>
  36. </androidx.constraintlayout.widget.ConstraintLayout>

activity 部分:

  1. //前面加标签
  2. TextView tvFront = (TextView) findViewById(R.id.tv_rl_test_tagFront);
  3. TextView tvFrontOne = findViewById(R.id.tv_rl_test_frontOne);
  4. TextView tvFrontTwo = findViewById(R.id.tv_rl_test_frontTwo);
  5. tvFrontOne.setText(tagSrc);
  6. //获取tvFrontOne显示的内容
  7. tvFrontOne.post(new Runnable() {
  8. @Override
  9. public void run() {
  10. //获取第一行显示的内容
  11. String lineContent = Utils.INSTANCE.getTextLineContent(tvFrontOne, 0, tagSrc);
  12. if (TextUtils.equals(lineContent,tagSrc)){
  13. //一行可以完整显示
  14. tvFrontTwo.setVisibility(View.GONE);
  15. }else {
  16. //需要多行才能显示
  17. tvFrontTwo.setVisibility(View.VISIBLE);
  18. String nextContent = tagSrc.substring(lineContent.length(), tagSrc.length());
  19. tvFrontTwo.setText(nextContent);
  20. }
  21. }
  22. });

三、解决对齐问题

image.png
如图,图中第一行和第二行并没有对齐,使用 TextView 时,当文字显示不行时就会自动换行,所以会无法对齐,不对齐就会不够美观。解决方法是让文字两端对齐。如下图:
image.png
网上有很多方法可以实现文字两端对齐,这里介绍一种自定义 View 的方法,感觉还可以,中英文混合也可以对齐:
AlignTextView:

  1. public class AlignTextView extends AppCompatTextView {
  2. private boolean alignOnlyOneLine;
  3. public AlignTextView(Context context) {
  4. this(context, null);
  5. }
  6. public AlignTextView(Context context, @Nullable AttributeSet attrs) {
  7. this(context, attrs, 0);
  8. }
  9. public AlignTextView(Context context, AttributeSet attrs, int defStyleAttr) {
  10. super(context, attrs, defStyleAttr);
  11. init(context, attrs);
  12. }
  13. private void init(Context context, AttributeSet attrs) {
  14. TypedArray typedArray = context.obtainStyledAttributes(attrs, R.styleable.AlignTextView);
  15. alignOnlyOneLine = typedArray.getBoolean(R.styleable.AlignTextView_alignOnlyOneLine, false);
  16. typedArray.recycle();
  17. setTextColor(getCurrentTextColor());
  18. }
  19. @Override
  20. public void setTextColor(int color) {
  21. super.setTextColor(color);
  22. getPaint().setColor(color);
  23. }
  24. protected void onDraw(Canvas canvas) {
  25. CharSequence content = getText();
  26. if (!(content instanceof String)) {
  27. super.onDraw(canvas);
  28. return;
  29. }
  30. String text = (String) content;
  31. Layout layout = getLayout();
  32. for (int i = 0; i < layout.getLineCount(); ++i) {
  33. int lineBaseline = layout.getLineBaseline(i) + getPaddingTop();
  34. int lineStart = layout.getLineStart(i);
  35. int lineEnd = layout.getLineEnd(i);
  36. if (alignOnlyOneLine && layout.getLineCount() == 1) {//只有一行
  37. String line = text.substring(lineStart, lineEnd);
  38. float width = StaticLayout.getDesiredWidth(text, lineStart, lineEnd, getPaint());
  39. this.drawScaledText(canvas, line, lineBaseline, width);
  40. } else if (i == layout.getLineCount() - 1) {//最后一行
  41. canvas.drawText(text.substring(lineStart), getPaddingLeft(), lineBaseline, getPaint());
  42. break;
  43. } else {//中间行
  44. String line = text.substring(lineStart, lineEnd);
  45. float width = StaticLayout.getDesiredWidth(text, lineStart, lineEnd, getPaint());
  46. this.drawScaledText(canvas, line, lineBaseline, width);
  47. }
  48. }
  49. }
  50. private void drawScaledText(Canvas canvas, String line, float baseLineY, float lineWidth) {
  51. if (line.length() < 1) {
  52. return;
  53. }
  54. float x = getPaddingLeft();
  55. boolean forceNextLine = line.charAt(line.length() - 1) == 10;
  56. int length = line.length() - 1;
  57. if (forceNextLine || length == 0) {
  58. canvas.drawText(line, x, baseLineY, getPaint());
  59. return;
  60. }
  61. float d = (getMeasuredWidth() - lineWidth - getPaddingLeft() - getPaddingRight()) / length;
  62. for (int i = 0; i < line.length(); ++i) {
  63. String c = String.valueOf(line.charAt(i));
  64. float cw = StaticLayout.getDesiredWidth(c, this.getPaint());
  65. canvas.drawText(c, x, baseLineY, this.getPaint());
  66. x += cw + d;
  67. }
  68. }
  69. }

attrs:
显示一行时使用,感觉没什么用处。

  1. <declare-styleable name="AlignTextView">
  2. <attr name="alignOnlyOneLine" format="boolean"/>
  3. </declare-styleable>

四、其他实现方式

查找了很多资料,网上也有其他的实现方式,各有优缺点,可以用来参考。
TextView文本尾部添加标签,支持自动换行
android TextView添加标签,一个或多个
TextView多行文字超出时如何在省略号后添加图标
android TextView文字换行内容末尾紧跟图标或其他控件的实现
android之文本前面或后面多标签
Android之旅:突然想玩的TextView前面加标签的方法