標籤:效果 com bsp ica div cti 運行 tools etc
1、相關屬性
1.1、常用屬性 android:collapseColumns 設定需要被隱藏的列的序號 android:shrinkColumns 設定允許被收縮的列的序號 android:stretchColumns 設定運行被展開的列的序號 注意: 列號都是從0開始算,設定多個“1,3”,所有列都生效“*” android:layout_column = ”2“ 表示跳過第二個 android:layout_span = ”4“ 表示合并4個儲存格1.2、如何確定行數和列數 !如何直接往TableLayout中添加組件的話,那個這個組件將佔滿一行 !如何想一行有多個組件,就添加一個TableRow的容器,把組件放進去 !tablerow中組件個數決定列數,列的寬度由最寬的儲存格決定 !TableRow的寬度是預設的不能修改,高度可以自訂 !整個表格版面配置的寬度取決於父容器的寬度
2、樣本
<?xml version="1.0" encoding="utf-8"?><TableLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" tools:context=".LoginActivity" android:stretchColumns="0,3" android:gravity="center_vertical" android:background="#66ff66"> <TableRow> <TextView /> <TextView android:layout_height="wrap_content" android:text="使用者名稱:"/> <EditText android:layout_height="wrap_content" /> <TextView /> </TableRow> <TableRow> <TextView /> <TextView android:layout_height="wrap_content" android:text="密 碼"/> <EditText android:layout_height="wrap_content" android:minWidth="200dp"/> <TextView /> </TableRow> <TableRow> <TextView /> <Button android:layout_height="wrap_content" android:text="登入"/> <Button android:layout_width="60dp" android:text="退出"/> <TextView /> </TableRow></TableLayout>
Android之TableLayout表格版面配置