【解疑答惑】—— android:maxLines="1"没满一行显示省略号,用android:singleLine="true"解决

带标签的文本
数据

  1. android:maxLines=”1”, 还没满一行就会会显示省略号
    【解疑答惑】—— android:maxLines=

  2. android:singleLine=”true”, 正常显示
    【解疑答惑】—— android:maxLines=

问题原因:

Google Document 的解释:

android:maxLines
Makes the TextView be at most this many lines tall.

android:singleLine
Constrains the text to a single horizontally scrolling line instead of letting it wrap onto multiple lines, and advances focus instead of inserting a newline when you press the enter key.
55

具体区别:

   android:maxLines是限制高度,android:singleLine是强制不让换行。从高度上来讲二者是一样的,都只显示了一行字串, 但从换行的角度来讲,android:maxLines并不会改变换行的位置,而android:singleLine则会改变换行的位置。所以,如果要截取字符串并追加省略号显示,尽量用android:singleLine属性。如果要控制显示行数,尽量用android:maxLines属性。

你可能感兴趣的:(解疑答惑)