私はそのようTableRow
にaを作ろうとしTableLayout
ています:
_____________________________________
| ___________________ ____________ |
| |TEXTVIEW 1 | |TEXTVIEW 2 | |
| | | |___________| |
| | | ___________ |
| | | |TEXTVIEW 3 | |
| |___________________| |___________| |
|_____________________________________|
うまくいけば、それは理にかなっています。TextViews
3つを1つにしようとしていTableRow
ます。最初の列にはマルチラインとワイドが含まれ、2 番目の列には互いの上に積み重ねられるTextView
2 つのシングルライン ショートが含まれます。TextViews
これは可能ですか?そうでない場合、どうすればこれを達成できますか? 以下は、私が開始したxmlコードです。
<TableLayout
xmlns:tools="http://schemas.android.com/tools"
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_height="fill_parent"
android:layout_width="fill_parent" >
<TableRow
android:id="@+id/row1"
android:layout_width="fill_parent"
android:layout_height="wrap_content" >
<TextView
android:id="@+id/question"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:textStyle="bold"
android:textSize="8sp" />
<TextView
android:id="@+id/timer"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:textStyle="bold"
android:textSize="8sp" />
<TextView
android:id="@+id/points"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:textStyle="bold"
android:textSize="8sp" />
</TableRow>
</TableLayout>