溫馨提示×

Android中怎么使用TableLayout布局

小億
106
2024-04-15 18:02:11
欄目: 編程語言

在Android中使用TableLayout布局,可以按照以下步驟進行:

  1. 在XML布局文件中,使用TableLayout標簽來定義一個表格布局??梢蕴砑右粋€或多個TableRow標簽來定義表格中的行。
<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>
  1. 在Java代碼中,可以動態(tài)地添加行和單元格到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需求來設置每個單元格的樣式和內容。

0