我的布局中有一个TextView,有2行,如果文本中的文字太长,应该用3个点剪切。
问题是并不总是显示3个点。有时,如果文本在中间或太多空格中有'\ n',则不会显示3个点,并且用户无法知道文本未满。
如果您发现我的xml有任何问题,请告诉我 感谢
<TextView
android:id="@+id/messageText"
style="@style/bubblesTextStyle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignLeft="@id/toString"
android:layout_below="@id/inbox_contactName"
android:layout_marginTop="-2dp" />
<style name="bubblesTextStyle" parent="@android:style/TextAppearance.Theme">
<item name="android:ellipsize">end</item>
<item name="android:maxLines">2</item>
<item name="android:textColor">#666666</item>
<item name="android:textSize">12sp</item>
</style>