4

我有一个TextView应该是 4 行长的。

First line text should be "YES"
Second Line ="No"
Third Line = "true"
Fourth line + "false"

这怎么能用一个来完成TextView

4

2 回答 2

18

尝试关注多行TextView。

<TextView 
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content" 
    android:maxLines="4" 
    android:singleLine="false" 
    android:text="YES\nNo\ntrue\nfalse" />

您可以尝试\n在下一行设置文本。

于 2012-05-30T11:25:47.773 回答
2

试试这个:

<TextView android:id="@+id/text"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:lines="4"
    android:text="YES\nNo\ntrue\nfalse" />
于 2012-05-30T11:14:39.883 回答