溫馨提示×

TableLayout的基本使用方式

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

TableLayout是一個用于顯示表格數(shù)據(jù)的布局容器,它可以讓子視圖按行和列進行排列。下面是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. 創(chuàng)建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);

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

0