動的なテーブルレイアウトを作成したいのですが。私はこれらのノードを持っています(各ノードは別々のスタイルを持っているため):
- ヘッダー行
- ヘッダーセル
- 奇数行
- 奇数行のセル
- 偶数行
このような行セルでさえ:
ここにコードを入力してください
<TableRow android:id="@+id/header_row" style="@style/HeaderRow" android:layout_width="wrap_content" android:layout_height="wrap_content" > <TextView android:id="@+id/header_tv" style="@style/HeaderText" android:layout_width="wrap_content" android:layout_height="wrap_content" /> </TableRow> <TableRow android:id="@+id/bodyrow_odd" style="@style/BodyRowOdd" android:layout_width="wrap_content" android:layout_height="wrap_content" > <TextView android:id="@+id/body_tv_odd" style="@style/BodyTextOdd" android:layout_width="wrap_content" android:layout_height="wrap_content" /> </TableRow> <TableRow android:id="@+id/bodyrow_even" style="@style/BodyRowEven" android:layout_width="wrap_content" android:layout_height="wrap_content" > <TextView android:id="@+id/body_tv_even" style="@style/BodyTextEven" android:layout_width="wrap_content" android:layout_height="wrap_content" /> </TableRow>
各ノードを膨らませて動的インターフェースを作成したい場合は、各ノードを個別のxmlにする必要がありますか?`ここにコードを入力してください