在Android中,線性布局和表格布局用的是最多的。
在很多的輸出操作中,往往會使用表格的形式對顯示的數據進行排版,tablelayout采用表格形式對控件的布局進行管理的,在布局的管理中,要使用TableRow進行表格行的控制,之後所有的組件要在tableRow中進行增加:
如圖:
下面我們就看看一個典型的tableLayout的布局方式:
- <?xml version="1.0" encoding="utf-8"?>
- <TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:orientation="vertical"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- >
- <TableRow >
- <EditText
- android:id="@+id/input"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:hint="請輸入查找字符"
- />
- <Button
- android:id="@+id/search"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="查找"
- />
- </TableRow >
- <View
- android:layout_height="2px"
- android:layout_width="fill_parent"
- android:background="#FF909032"
- />
- <TableRow >
- <TextView
- android:id="@+id/views"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="請選擇編碼"
- />
- <RadioGroup >
- <RadioButton
- android:id="@+id/radiobtn1"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="UTF_8"
- />
- <RadioButton
- android:id="@+id/radiobtn2"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="SHIF_JIS"
- />
- </RadioGroup>
- </TableRow>
- </TableLayout>
主要實現是通過TableLayout裡面嵌套不同的widget來做到的。結果運行如下:
其中的一個分隔符是view來達到這種分割的現實效果的。