问题描述:
1. android:maxLines="1", 只显示一个中文
2. android:singleLine="true", 正常显示
问题原因:
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.
具体区别:
android:maxLines是限制高度, android:singleLine是强制不让换行。从高度上来讲二者是一样的,都只显示了一行字串, 但从换行的角度来讲,android:maxLines并不会改变换行的位置,而android:singleLine则会改变换行的位置。所以,如果要截取字符串并追加省略号显示,尽量用android:singleLine属性。如果要控制显示行数,尽量用android:maxLines属性。