中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

TableLayout的基本使用方式

小云
121
2023-09-13 09:18:33
欄目: 編程語言

TableLayout是一個用于顯示表格數據的布局容器,它可以讓子視圖按行和列進行排列。下面是TableLayout的基本使用方式:

  1. 在XML布局文件中,使用TableLayout作為根布局容器。
<TableLayout
android:id="@+id/tableLayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:stretchColumns="*">
</TableLayout>
  1. 在代碼中獲取TableLayout的實例。
TableLayout tableLayout = findViewById(R.id.tableLayout);
  1. 創建TableRow對象,并將需要顯示的視圖添加到TableRow中。
TableRow row1 = new TableRow(context);
TextView textView1 = new TextView(context);
textView1.setText("Item 1");
row1.addView(textView1);
TextView textView2 = new TextView(context);
textView2.setText("Item 2");
row1.addView(textView2);
  1. 將TableRow添加到TableLayout中。
tableLayout.addView(row1);
  1. 可以重復步驟3和步驟4,添加多個TableRow。
TableRow row2 = new TableRow(context);
TextView textView3 = new TextView(context);
textView3.setText("Item 3");
row2.addView(textView3);
TextView textView4 = new TextView(context);
textView4.setText("Item 4");
row2.addView(textView4);
tableLayout.addView(row2);
  1. 最后,在需要顯示TableLayout的地方,將其設置為可見。
tableLayout.setVisibility(View.VISIBLE);

通過以上步驟,就可以將數據按表格的形式顯示在TableLayout中。

0
内乡县| 巩义市| 昌邑市| 陆良县| 宜良县| 深圳市| 夹江县| 甘洛县| 桃源县| 辽中县| 中山市| 磐石市| 宁晋县| 莱阳市| 格尔木市| 洪雅县| 婺源县| 西吉县| 民县| 邵阳县| 开平市| 内江市| 阿拉尔市| 永善县| 陇川县| 田林县| 益阳市| 遂平县| 精河县| 高要市| 牙克石市| 崇文区| 尼玛县| 罗山县| 满城县| 彝良县| 修水县| 新民市| 上林县| 台中市| 章丘市|