以下是我的应用程序的图像,有两个不同的输入: 60!和125!
60岁!按钮不会扭曲。
125!按钮不见了。
答案 0 :(得分:0)
将android:maxLines
和android:ellipsize
属性添加到您的TextView
XML中,如下所示...
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:maxLines="3"
android:ellipsize="end" />