Android布局方式之表格布局管理器(TableLayout)
在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>
其中的一个分隔符是view来达到这种分割的现实效果的。
相关推荐
IT之家 2020-03-11
graseed 2020-10-28
zbkyumlei 2020-10-12
SXIAOYI 2020-09-16
jinhao 2020-09-07
impress 2020-08-26
liuqipao 2020-07-07
淡风wisdon大大 2020-06-06
yoohsummer 2020-06-01
chenjia00 2020-05-29
baike 2020-05-19
扭来不叫牛奶 2020-05-08
hxmilyy 2020-05-11
黎豆子 2020-05-07
xiongweiwei00 2020-04-29
Cypress 2020-04-25
冰蝶 2020-04-20