我的TextView定义如下:
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:maxLines="1"
android:ellipsize="end"
android:text="This is very long text"
android:textSize="34pt"/>
使用API级别14/15这会导致整个单词“非常”,我实际上显示的文字是“这是”,但我需要将此文本剪切为“This is ver”。
有人可以问我如何实现这种行为吗?
答案 0 :(得分:4)
使用属性singleline和ellipsize:
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:singleLine="true"
android:ellipsize="marquee"
android:text="This is very long text"
android:textSize="34pt"/>