可以在词内进行椭圆化吗?

时间:2014-04-21 18:52:28

标签: android textview

我有一个项目列表,其中的单词可能比textView的宽度长。我希望文本能够完成。

<TextView
    android:layout_width="100dp"
    android:layout_height="wrap_content"
    android:maxLines="1"
    android:ellipsize="end"
    android:text="* SomeVeryLongWordWhichIsLongerThanWidth" />

问题是输出为*...而不是* SomeVeryLongWordWhi...。我怎样才能实现后者?

1 个答案:

答案 0 :(得分:1)

您可以使用\u00A0代替普通空格标志 \u00A0不可破坏的空间

android:text="*\u00A0SomeVeryLongWordWhichIsLongerThanWidth"