时间:2021-05-20
本文实例讲述了Android开发菜单布局之表格布局。分享给大家供大家参考,具体如下:
多用于静态菜单页面
xml代码
代码内带详细解释
<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:id="@+id/root" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical"> <!--分别以0,1,2 对应 1,2,3列--> <!--定义第 1 个表格布局,第二列收缩第三列拉伸--> <TableLayout android:id="@+id/TableLayout01" android:layout_width="match_parent" android:layout_height="wrap_content" android:shrinkColumns="1" android:stretchColumns="2"> <!--第一行不使用TableRow自己会占一行--> <Button android:id="@+id/ok1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="第一行不使用TableRow自己会占一行"/> <!--添加一个表格--> <TableRow> <Button android:id="@+id/ok2" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="无设置 按钮"/> <Button android:id="@+id/ok3" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="收缩的 按钮"/> <Button android:id="@+id/ok4" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="拉伸的 按钮"/> </TableRow> </TableLayout> <!--定义第 2 个表格布局,第二列隐藏--> <TableLayout android:id="@+id/TableLayout02" android:layout_width="match_parent" android:layout_height="wrap_content" android:collapseColumns="1"> <!--第一行不使用TableRow自己会占一行--> <Button android:id="@+id/ok5" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="第一行不使用TableRow自己会占一行"/> <!--添加一个表格--> <!--由于设置collapseColumns="1"故第二列隐藏--> <TableRow> <Button android:id="@+id/ok6" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="按钮1"/> <Button android:id="@+id/ok7" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="按钮2"/> <Button android:id="@+id/ok8" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="按钮3"/> </TableRow> </TableLayout> <!--定义第 3 个表格布局,第二列和第三列拉伸--> <!--多行花式设计--> <TableLayout android:id="@+id/TableLayout03" android:layout_width="match_parent" android:layout_height="wrap_content" android:stretchColumns="1,2"> <!--第一行不使用TableRow自己会占一行--> <Button android:id="@+id/ok9" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="第一行不使用TableRow自己会占一行"/> <!--添加一个表格--> <!--由于设置collapseColumns="1"故第二列隐藏--> <TableRow> <Button android:id="@+id/ok10" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="无设置 按钮"/> <Button android:id="@+id/ok11" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="拉伸的 按钮"/> <Button android:id="@+id/ok14" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="拉伸的 按钮"/> </TableRow> <!--第二行单列--> <TableRow> <Button android:id="@+id/ok15" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="无设置 按钮"/> <Button android:id="@+id/ok16" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="拉伸的 按钮"/> </TableRow> <TableRow> <Button android:id="@+id/ok17" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="无设置 按钮"/> </TableRow> </TableLayout></LinearLayout>效果图:
更多关于Android相关内容感兴趣的读者可查看本站专题:《Android布局layout技巧总结》、《Android开发入门与进阶教程》、《Android调试技巧与常见问题解决方法汇总》、《Android基本组件用法总结》、《Android视图View技巧总结》及《Android控件用法总结》
希望本文所述对大家Android程序设计有所帮助。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
本文实例为大家分享了Android表格布局TableLayout的具体代码,供大家参考,具体内容如下1.TableLayoutTableLayout表格布局模型
本文实例讲述了Android开发之开关按钮用法。分享给大家供大家参考,具体如下:效果如下:以下是布局文件:活动代码实现:publicclassHomeexten
Android学习笔记之样式和主题之选择器(1)布局文件需要在按钮里边使用:android:textColor="@color/button_selector"
本节引言今天要介绍的布局是Android4.0以后引入的一个新的布局,和前面所学的TableLayout(表格布局)有点类似,不过他有很多前者没有的东西,也更加
布局对网页的作用类似于设计图对地产开发商的作用,制作商务网页的首要内容是对网页进行布局。常见的布局方式有:表格布局、框架布局、层布局,鉴于以上布局方式均存在一定