这篇文章主要为大家详细介绍了机器人布局之表格布局表格布局,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
本文实例为大家分享了机器人表格布局表格布局的具体代码,供大家参考,具体内容如下
1.表格布局
表格布局表格布局模型以行列的形式管理子控件,每一行为一个表格行的对象,当然也可以使一个视角的对象
2.表格布局的属性(全局属性)
android:collapseColumns="1,2 "
隐藏从0开始的索引列,列之间必须用逗号隔开1,2
android:shrinkColumns="1,2 "
收缩从0开始的索引列,当可收缩的列太宽(内容太多时)不会被挤出屏幕,列之间
用逗号隔开1,2,你可以通过"*"代替收缩所有列,注意一列能同时表示收缩和拉伸
android:stretchColumns="1,2 "
拉伸从0开始的索引列,以填满剩下的多余空白空间,列之间必须用逗号隔开,1,2,
你可以通过"*"代替收缩所有列,注意一列能同时表示收缩和拉伸
3.表格布局的局部属性(内部控件所用属性)
android:layout_column="1 "该控件显示在第一列
android:layout_span="2 "该控件占据两列
?可扩展标记语言版本='1.0 '编码='utf-8 '?
表布局xmlns:Android=' http://模式。安卓。' com/apk/RES/Android '
Android:layout _ width=' match _ parent ' Android:layout _ height=' match _ parent '
android:collapseColumns='0 '
android:shrinkColumns='4 '
表格行
android:id='@ id/tablerow1 '
Android:layout _ width=' wrap _ content '
Android:layout _ height=' wrap _ content '
纽扣
android:id='@ id/button4 '
Android:layout _ width=' wrap _ content '
Android:layout _ height=' wrap _ content '
android:text='Button1' /
纽扣
android:id='@ id/button5 '
Android:layout _ width=' wrap _ content '
Android:layout _ height=' wrap _ content '
android:text='Button2' /
纽扣
android:id='@ id/button6 '
Android:layout _ width=' wrap _ content '
Android:layout _ height=' wrap _ content '
android:text='Button3' /
纽扣
android:id='@ id/button7 '
Android:layout _ width=' wrap _ content '
Android:layout _ height=' wrap _ content '
android:text='Button4' /
纽扣
android:id='@ id/button8 '
Android:layout _ width=' wrap _ content '
Android:layout _ height=' wrap _ content '
Android:text=' button 5555555555555555555555 '/
/TableRow
/表格布局
?可扩展标记语言版本='1.0 '编码='utf-8 '?
表布局xmlns:Android=' http://模式。安卓。' com/apk/RES/Android '
Android:layout _ width=' match _ parent '
Android:layout _ height=' match _ parent '
android:stretchColumns='* '
表格行
android:id='@ id/tablerow1 '
Android:layout _ width=' match _ parent '
Android:layout _ height=' match _ parent '
纽扣
android:id='@ id/button4 '
Android:layout _ width=' wrap _ content '
Android:layout _ height=' wrap _ content '
android:text='Button1' /
纽扣
android:id='@ id/button5 '
Android:layout _ width=' wrap _ content '
Android:layout _ height=' wrap _ content '
android:text='Button2' /
纽扣
android:id='@ id/button6 '
Android:layout _ width=' wrap _ content '
Android:layout _ height=' wrap _ content '
android:text='Button3' /
/TableRow
/表格布局
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持我们。
郑重声明:本文由网友发布,不代表盛行IT的观点,版权归原作者所有,仅为传播更多信息之目的,如有侵权请联系,我们将第一时间修改或删除,多谢。