私はTextView
4行の長さでなければなりません。
First line text should be "YES"
Second Line ="No"
Third Line = "true"
Fourth line + "false"
単一でこれをどのように行うことができTextView
ますか?
複数行の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
次の行にテキストを設定することができます。
これを試して:
<TextView android:id="@+id/text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:lines="4"
android:text="YES\nNo\ntrue\nfalse" />