4

私はTextView4行の長さでなければなりません。

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 に答える