91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

Android之TableLayout表格布局怎么用

小億
100
2023-07-31 20:12:12
欄目: 編程語言

在Android中,TableLayout是一種用于創建表格布局的布局容器。可以使用TableLayout來創建包含多行多列的表格,并在每個單元格中放置其他視圖或控件。

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

  1. 在XML布局文件中添加TableLayout標簽:
<TableLayout
android:id="@+id/tableLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content">
</TableLayout>
  1. 在Activity中獲取TableLayout實例:
TableLayout tableLayout = findViewById(R.id.tableLayout);
  1. 創建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)并設置內容:
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. 可以重復步驟4以創建更多的單元格,并將它們添加到同一行的TableRow中。

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

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

通過重復步驟4和步驟5,可以創建任意數量的行和單元格,并在TableLayout中進行布局。

0
马关县| 五指山市| 左权县| 个旧市| 得荣县| 昌吉市| 楚雄市| 庆安县| 措美县| 昔阳县| 平阳县| 鄂州市| 湟中县| 冀州市| 望奎县| 明水县| 托克托县| 广河县| 务川| 平山县| 班玛县| 承德市| 府谷县| 富源县| 天峨县| 襄城县| 宁化县| 阿荣旗| 大方县| 临沂市| 永泰县| 新和县| 天等县| 万安县| 巩留县| 白山市| 天气| 崇明县| 绥芬河市| 华阴市| 安远县|