我有一个项目列表,其中的单词可能比textView的宽度长。我希望文本能够完成。
<TextView
android:layout_width="100dp"
android:layout_height="wrap_content"
android:maxLines="1"
android:ellipsize="end"
android:text="* SomeVeryLongWordWhichIsLongerThanWidth" />
问题是输出为*...
而不是* SomeVeryLongWordWhi...
。我怎样才能实现后者?
答案 0 :(得分:1)
您可以使用\u00A0
代替普通空格标志
\u00A0
不可破坏的空间
android:text="*\u00A0SomeVeryLongWordWhichIsLongerThanWidth"