データベースから取得したテキストが入力されたTextViewがあるため、その長さは未定義です。
maxline属性を使用してTextViewを構成し、3行を超えるテキストが必要ないため、その値を3に設定しました。また、ellipsize属性を使用します。
しかし、それは正しく動作しません。テキストは3行より大きくなりますが、2行しか印刷されません。
<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属性が正しく機能しない理由がわかりません。私が間違っているのは何ですか?
ありがとう