TableLayout可以把视图views组织成“行”或“列”。可以使用<TableRow>元素指定表格中的一行 。每一行又可以包含一个或多个视图。每行中的每个视图组成了表格的一个元素。每列的宽度,取决于这一 列中宽度最大的视图view。
观察main.xml中的代码:
<?xml version="1.0" encoding="utf-8"?> <TableLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" > <TableRow> <TextView android:text="User Name:" android:width="120dp" /> <EditText android:id="@+id/txtUserName" android:width="200dp" /> </TableRow> <TableRow> <TextView android:text="Password:" /> <EditText android:id="@+id/txtUserName" android:password="true" /> </TableRow> <TableRow> <TextView /> <CheckBox android:id="@+id/chkRememberPassword" android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="Remember Password" /> </TableRow> <TableRow> <Button android:id="@+id/buttonSignIn" android:text="Log In" /> </TableRow> </TableLayout>
模拟器上的效果图:
开发入门(五)屏幕组件 5.4 TableLayout表格布局-miglayout 布局入门">
以上的例子,TableLayout中有2列,4行。在“Password” TextView视图的正下方,是一个空的 <TextView>元素。如果不这么做的话,“Remember Password” CheckBox就会出现在“Password” TextView视图的下面,就像这样:
查看本栏目更多精彩内容:http://www.bianceng.cnhttp://www.bianceng.cn/OS/extra/
以上是小编为您精心准备的的内容,在的博客、问答、公众号、人物、课程等栏目也有的相关内容,欢迎继续使用右上角搜索按钮进行搜索表格
, 视图
, 元素
, tablelayout
, password
, 一个
, android表格
, 表格布局TableLayout
, tablelayout布局
, android中tablelayout
, tablelayout表格
android的tablelayout
miglayout 布局入门、unity layout 组件、layout组件、react 布局组件、首页组件库 拖动布局,以便于您获取更多的相关知识。