テーブル レイアウトがあり、セルを 2 行に分割したい
以下は私のコードです
<TableRow android:layout_marginBottom="10dp">
<TextView android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginRight="3dp"
android:textSize="17dp"
android:text="@string/cardiovascular_problems" />
<Spinner android:id="@+id/cardiovascular_spinner"
android:layout_width="200dp"
android:layout_height="50dp" />
<TextView android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginRight="3dp"
android:textSize="17dp"
android:text="@string/if_yes_give_details" />
</TableRow>
この行には、2 つのセルが必要です。最初のセルにはテキストビューがあります
2行に分割したい2番目のセル
1 行目にはスピナーとテキスト ビューがあり、2 行目には編集テキストがあります
この行で別のテーブル レイアウトを使用する以外にこれを行う方法はありますか?