十三、TableLayout 表格佈局
阿新 • • 發佈:2022-03-23
一、TableLayout 需要和 TableRow搭配使用
二、基本屬性
android:collapseColumns 設定需要被隱藏的列的序號,從0開始
android:stretchColumns 設定允許被拉伸的列的列序號,從0開始
android:shrinkColumns 設定允許被收縮的列的列序號,從0開始
子控制元件設定屬性
android:layout_column 顯示在第幾列
android:layout_span 橫向跨n列 ‘
三、程式碼
<?xml version="1.0" encoding="utf-8"?> <TableLayout android:layout_width="match_parent" android:layout_height="match_parent" xmlns:android="http://schemas.android.com/apk/res/android"> <TableRow> <Button android:layout_column="1" android:layout_span="2" android:text="第1個" android:layout_width="wrap_content" android:layout_height="wrap_content"/> <Button android:text="第2個" android:layout_width="wrap_content" android:layout_height="wrap_content"/> </TableRow> <TableRow> <Button android:text="第1個" android:layout_width="wrap_content" android:layout_height="wrap_content"/> <Button android:text="第2個" android:layout_width="wrap_content" android:layout_height="wrap_content"/> <Button android:text="第3個" android:layout_width="wrap_content" android:layout_height="wrap_content"/> </TableRow> <Button android:text="第1個" android:layout_width="wrap_content" android:layout_height="wrap_content"/> <Button android:text="第1個" android:layout_width="wrap_content" android:layout_height="wrap_content"/> </TableLayout>
四、效果圖