在Android中,可以通過TableLayout和TableRow來創建表格布局。以下是一個簡單的示例:
<TableLayout
android:id="@+id/tableLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="16dp">
<TableRow
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Name" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Age" />
</TableRow>
<!-- 添加更多的TableRow來展示更多的數據 -->
</TableLayout>
TableLayout tableLayout = findViewById(R.id.tableLayout);
// 創建一個新的TableRow
TableRow row = new TableRow(this);
TableRow.LayoutParams layoutParams = new TableRow.LayoutParams(TableRow.LayoutParams.MATCH_PARENT, TableRow.LayoutParams.WRAP_CONTENT);
row.setLayoutParams(layoutParams);
// 添加TextView到新的TableRow中
TextView nameTextView = new TextView(this);
nameTextView.setText("Alice");
row.addView(nameTextView);
TextView ageTextView = new TextView(this);
ageTextView.setText("25");
row.addView(ageTextView);
// 將新的TableRow添加到TableLayout中
tableLayout.addView(row);
通過這種方式,可以動態的添加行數據到表格布局中。可以根據需要添加更多的行數據來展示更多的內容。