我正在開發android應用程序,因此我想在單個文本視圖中顯示四行文本。 我的數組列表中包含類似以下數據如何在單個TextView中顯示數組列表中的多行?
客戶名稱:Nilesh製作
客戶聯繫:23230200
顧客市:浦那
,但是當我寫的代碼像下面只有最後一行是從顯示數組列表
XML
<TextView android:id="@+id/kbpViewTvCustNm"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="4dp"
android:layout_marginLeft="8dp"
android:lines="4"
android:textIsSelectable="false" />
代碼
for (String details : list2)
{
custName.setText(details);
}
這似乎是對我最好的解決辦法,StringBuilder的是比字符串更好地追加文本。 – npace
謝謝你的回答。 –
歡迎你!我的榮幸! ;-) – Ostkontentitan