2014-06-11 54 views
1

TextView當我希望我的長文本被分割到下一行時,我應該使用哪個屬性。例如,我只是一個TextView,它顯示一個圖像的路徑,路徑很長,它消耗了兩條線,並且當它顯示在其各自的TextView上時,文本被分割到第二行,但第一行中有一些文本是在最後失蹤。我已檢查android:ellipsize的財產,但它不是我所需要的。如何在行的末尾顯示長文本而不損失行末的任何文本

TextView_xml

<TextView 
    android:id="@+id/reportImgPathValue" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:textColor="@android:color/holo_blue_dark"/> 
+0

您是否試過 android:maxLines =「2」和 android:ellipsize =「end」的組合? – tritop

+0

@tritop否,我會嘗試並通知 – LetsamrIt

+0

發佈您的'TextView' xml。 –

回答

0

任何如以下所列的「行」屬性應該做的伎倆:

安卓的minlines - 使TextView中至少有這麼多行高。

android:lines - 使TextView正好是這麼多行高。

相關問題