我有一个 TextView,其中填充了从数据库中获取的文本,因此它的长度未定义。
我已经使用 maxline 属性配置了 TextView,并将其值设置为 3,因为我不想要超过 3 行的文本,而且我还使用了 ellipsize 属性。
但它不能正常工作。虽然文本大于 3 行,但它只打印两行。
<TextView
android:id="@+id/etLugar"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignBaseline="@+id/tvLugar"
android:layout_marginLeft="15dp"
android:layout_toRightOf="@+id/tvLugar"
android:text="A very large text than must be shown in the textview, but no more of three lines are going to be shown"
android:textColor="@color/foreground1"
android:maxLines="3"
android:ellipsize="end"
android:textSize="12dp"
/>
我不明白为什么 maxlines 属性不能正常工作。我做错了什么?
谢谢