Android布局之表格布局TableLayout详解
作者:海向_起源 时间:2022-09-08 08:08:06
本文实例为大家分享了Android表格布局TableLayout的具体代码,供大家参考,具体内容如下
1.TableLayout
TableLayout表格布局模型以行列的形式管理子控件,每一行为一个TableRow的对象, 当然也可以使一个View的对象
2.TableLayout的属性(全局属性)
android:collapseColumns=”1,2”
隐藏从0开始的索引列,列之间必须用逗号隔开1,2
android:shrinkColumns=”1,2”
收缩从0开始的索引列,当可收缩的列太宽(内容太多时)不会被挤出屏幕,列之间
用逗号隔开1,2,你可以通过”*”代替收缩所有列,注意一列能同时表示收缩和拉伸
android:stretchColumns=”1,2”
拉伸从0开始的索引列,以填满剩下的多余空白空间,列之间必须用逗号隔开,1,2,
你可以通过”*”代替收缩所有列,注意一列能同时表示收缩和拉伸
3.TableLayout的局部属性(内部控件所用属性)
android:layout_column=”1” 该控件显示在第1列
android:layout_span=”2” 该控件占据两列
<?xml version="1.0" encoding="utf-8"?>
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent" android:layout_height="match_parent"
android:collapseColumns="0"
android:shrinkColumns="4">
<TableRow
android:id="@+id/tablerow1"
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
<Button
android:id="@+id/button4"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button1" />
<Button
android:id="@+id/button5"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button2" />
<Button
android:id="@+id/button6"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button3" />
<Button
android:id="@+id/button7"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button4" />
<Button
android:id="@+id/button8"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button555555555555555555555555" />
</TableRow>
</TableLayout>
<?xml version="1.0" encoding="utf-8"?>
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:stretchColumns="*">
<TableRow
android:id="@+id/tablerow1"
android:layout_width="match_parent"
android:layout_height="match_parent">
<Button
android:id="@+id/button4"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button1" />
<Button
android:id="@+id/button5"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button2" />
<Button
android:id="@+id/button6"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button3" />
</TableRow>
</TableLayout>
来源:http://blog.csdn.net/baidu_37181928/article/details/78191342
标签:Android,表格布局,TableLayout
0
投稿
猜你喜欢
Java 迪杰斯特拉算法实现查找最短距离的实现
2022-05-23 01:47:43
C#微信开发之启用开发者模式
2022-07-07 11:24:54
如何在Java SpringBoot项目中配置动态数据源你知道吗
2021-07-23 11:10:08
Java URL自定义私有网络协议
2021-08-11 02:21:06
C#动态生成DropDownList执行失败原因分析
2023-08-30 22:37:28
Idea自动生成Entity实现过程详解
2022-06-03 12:18:24
c#取得控制台应用程序根目录
2023-06-16 14:25:44
Android实现带节点的进度条
2022-01-16 08:58:02
Fluent Mybatis 批量更新的使用
2023-01-28 13:18:44
C#多态详解
2023-06-25 13:42:20
Spring Boot整合Web项目常用功能详解
2023-06-04 17:14:21
MybatisPlus,无XML分分钟实现CRUD操作
2022-06-26 18:18:46
Spring Security 实现短信验证码登录功能
2022-11-02 19:39:30
Springboot 整合 RabbitMQ 消息队列 详情
2021-07-17 18:49:42
Android 2.3.7.r1 camera录像过程中按menu菜单键时会停止录像
2023-06-13 01:46:10
Java建造者设计模式详解
2022-09-19 13:14:11
jsp、struts、spring、mybatis实现前端页面功能模块化拆分的方案
2023-11-25 07:38:00
C#开发WinForm之DataGridView开发详解
2023-06-25 06:31:35
解析C++哈夫曼树编码和译码的实现
2021-11-19 05:26:25
C#实现滑动开关效果
2023-11-26 22:18:29