在Android中使用TableLayout布局,可以按照以下步驟進行:
<TableLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TableRow>
<TextView
android:text="Column 1"
android:padding="5dp"/>
<TextView
android:text="Column 2"
android:padding="5dp"/>
</TableRow>
<TableRow>
<TextView
android:text="Row 1"
android:padding="5dp"/>
<TextView
android:text="Row 1 Data"
android:padding="5dp"/>
</TableRow>
</TableLayout>
TableLayout tableLayout = findViewById(R.id.tableLayout);
TableRow row = new TableRow(this);
TextView cell1 = new TextView(this);
cell1.setText("Cell 1");
cell1.setPadding(5, 5, 5, 5);
TextView cell2 = new TextView(this);
cell2.setText("Cell 2");
cell2.setPadding(5, 5, 5, 5);
row.addView(cell1);
row.addView(cell2);
tableLayout.addView(row);
通過上述步驟,就可以在Android應用中使用TableLayout布局來展示表格數據??梢愿鶕嶋H需求來設置每個單元格的樣式和內容。