在Android中,TableLayout是一種用于創建表格布局的容器,它可以按照行列的方式排列子視圖。
使用TableLayout時,需要在XML布局文件中聲明TableLayout標簽,并在其中添加TableRow子視圖。每個TableRow可以包含多個子視圖,并且每個子視圖都會被放置到一個單元格中。
下面是TableLayout的使用方法示例:
<TableLayout
android:id="@+id/tableLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content">
</TableLayout>
TableLayout tableLayout = findViewById(R.id.tableLayout);
// 創建TableRow對象
TableRow tableRow = new TableRow(this);
// 創建并添加子視圖到TableRow中
TextView textView1 = new TextView(this);
textView1.setText("Cell 1");
tableRow.addView(textView1);
TextView textView2 = new TextView(this);
textView2.setText("Cell 2");
tableRow.addView(textView2);
// 將TableRow添加到TableLayout中
tableLayout.addView(tableRow);
可以通過重復上述步驟來添加多行數據。可以在代碼中設置TableRow和子視圖的其他屬性,如寬度、高度、邊距等。
注意:TableLayout中的子視圖會根據內容自動調整大小和位置,也可以通過設置列的權重來調整列的寬度。