在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来达到这种分割的现实效果的。