我有一個TextView填充了從數據庫中獲取的文本,所以其長度未定義。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屬性爲什麼不能正常工作。我做錯了什麼?
感謝
用於字符串長度和子字符串來限制:) – iNan 2012-07-20 11:26:20
「android:text'屬性中是否存在'\ n'?只有這是它認爲的新線。 – RTB 2012-07-20 11:26:45