我的TextView
应该是4行。
First line text should be "YES"
Second Line ="No"
Third Line = "true"
Fourth line + "false"
如何使用单个TextView
?
答案 0 :(得分:17)
尝试关注多行 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
在下一行设置文字。
答案 1 :(得分: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" />