Android之TableLayout表格布局怎么用

小億
100
2023-07-31 20:12:12

在Android中,TableLayout是一種用于創(chuàng)建表格布局的布局容器??梢允褂肨ableLayout來(lái)創(chuàng)建包含多行多列的表格,并在每個(gè)單元格中放置其他視圖或控件。

以下是使用TableLayout的基本步驟:

  1. 在XML布局文件中添加TableLayout標(biāo)簽:
<TableLayout
android:id="@+id/tableLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content">
</TableLayout>
  1. 在Activity中獲取TableLayout實(shí)例:
TableLayout tableLayout = findViewById(R.id.tableLayout);
  1. 創(chuàng)建TableRow并將其添加到TableLayout中:
TableRow.LayoutParams rowParams = new TableRow.LayoutParams(
TableRow.LayoutParams.MATCH_PARENT,
TableRow.LayoutParams.WRAP_CONTENT
);
TableRow tableRow = new TableRow(this);
tableRow.setLayoutParams(rowParams);
tableLayout.addView(tableRow);
  1. 在TableRow中添加單元格(TableCell)并設(shè)置內(nèi)容:
TextView textView = new TextView(this);
textView.setText("Cell 1");
tableRow.addView(textView);
TextView textView2 = new TextView(this);
textView2.setText("Cell 2");
tableRow.addView(textView2);
  1. 可以重復(fù)步驟4以創(chuàng)建更多的單元格,并將它們添加到同一行的TableRow中。

  2. 可以重復(fù)步驟3和步驟4以創(chuàng)建更多的行,并將它們添加到TableLayout中。

TableRow tableRow2 = new TableRow(this);
tableRow2.setLayoutParams(rowParams);
tableLayout.addView(tableRow2);
// 添加單元格到第二行
...

通過(guò)重復(fù)步驟4和步驟5,可以創(chuàng)建任意數(shù)量的行和單元格,并在TableLayout中進(jìn)行布局。

0