android:TableLayout 布局详解

这篇博文包括的内容:

1、TableLayout简介

2、TableLayout行列数的确定

3、TableLayout可设置的属性详解

4、一个包含4个TableLayout布局的实例及效果图

一、Tablelayout简介

Tablelayout类以行和列的形式对控件进行管理,每一行为一个TableRow对象,或一个View控件。

当为TableRow对象时,可在TableRow下添加子控件,默认情况下,每个子控件占据一列。

当为View时,该View将独占一行。

二、TableLayout行列数的确定

TableLayout的行数由开发人员直接指定,即有多少个TableRow对象(或View控件),就有多少行。

TableLayout的列数等于含有最多子控件的TableRow的列数。如第一TableRow含2个子控件,第二个TableRow含3个,第三个TableRow含4个,那么该TableLayout的列数为4.

三、TableLayout可设置的属性详解

TableLayout可设置的属性包括全局属性及单元格属性。

1、全局属性也即列属性,有以下3个参数:

android:stretchColumns    设置可伸展的列。该列可以向行方向伸展,最多可占据一整行。

android:shrinkColumns     设置可收缩的列。当该列子控件的内容太多,已经挤满所在行,那么该子控件的内容将往列方向显示。

android:collapseColumns 设置要隐藏的列。

示例:

android:stretchColumns="0"           第0列可伸展

android:shrinkColumns="1,2"         第1,2列皆可收缩

android:collapseColumns="*"         隐藏所有行

说明:列可以同时具备stretchColumns及shrinkColumns属性,若此,那么当该列的内容N多时,将“多行”显示其内容。(这里不是真正的多行,而是系统根据需要自动调节该行的layout_height)

2、单元格属性,有以下2个参数:

android:layout_column    指定该单元格在第几列显示

android:layout_span        指定该单元格占据的列数(未指定时,为1)

示例:

android:layout_column="1"    该控件显示在第1列

android:layout_span="2"        该控件占据2列

说明:一个控件也可以同时具备这两个特性。

四、一个包含4个TableLayout布局的实例及效果图

<?xml version="1.0" encoding="utf-8"?>

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"

android:orientation="vertical"

android:layout_width="fill_parent"

android:layout_height="fill_parent"

android:padding="3dip"

>

  <!-- 第1个TableLayout,用于描述表中的列属性。第0列可伸展,第1列可收缩,第2列被隐藏-->

<TextView

android:text="表1:全局设置:列属性设置"

android:layout_height="wrap_content"

android:layout_width="wrap_content"

android:textSize="15sp"

android:background="#7f00ffff"/>

<TableLayout

android:id="@+id/table1"

android:layout_width="fill_parent"

android:layout_height="wrap_content"

android:stretchColumns="0"

android:shrinkColumns="1"

android:collapseColumns="2"

android:padding="3dip">

<TableRow>

<Button android:text="该列可伸展"/>

<Button android:text="该列可收缩"/>

<Button android:text="我被隐藏了"/>

</TableRow>

<TableRow>

<TextView android:text="我向行方向伸展,我可以很长    "/>

<TextView android:text="我向列方向收缩,我可以很深"/>

</TableRow>

</TableLayout>

<!-- 第2个TableLayout,用于描述表中单元格的属性,包括:android:layout_column 及android:layout_span-->

<TextView

android:text="表2:单元格设置:指定单元格属性设置"

android:layout_height="wrap_content"

android:layout_width="wrap_content"

android:textSize="15sp"

android:background="#7f00ffff"/>

<TableLayout

android:id="@+id/table2"

android:layout_width="fill_parent"

android:layout_height="wrap_content"

android:padding="3dip">

<TableRow>

<Button android:text="第0列"/>

<Button android:text="第1列"/>

<Button android:text="第2列"/>

</TableRow>

<TableRow>

<TextView android:text="我被指定在第1列" android:layout_column="1"/>

</TableRow>

<TableRow>

<TextView

android:text="我跨1到2列,不信你看!"

android:layout_column="1"

android:layout_span="2"

/>

</TableRow>

</TableLayout>

<!-- 第3个TableLayout,使用可伸展特性布局-->

<TextView

android:text="表3:应用一,非均匀布局"

android:layout_height="wrap_content"

android:layout_width="wrap_content"

android:textSize="15sp"

android:background="#7f00ffff"/>

<TableLayout

android:id="@+id/table3"

android:layout_width="fill_parent"

android:layout_height="wrap_content"

android:stretchColumns="*"

android:padding="3dip"

>

<TableRow>

<Button android:text="一" ></Button>

<Button android:text="两字"></Button>

<Button android:text="三个字" ></Button>

</TableRow>

</TableLayout>

<!-- 第4个TableLayout,使用可伸展特性,并指定每个控件宽度一致,如1dip-->

<TextView

android:text="表4:应用二,均匀布局"

android:layout_height="wrap_content"

android:layout_width="wrap_content"

android:textSize="15sp"

android:background="#7f00ffff"/>

<TableLayout

android:id="@+id/table4"

android:layout_width="fill_parent"

android:layout_height="wrap_content"

android:stretchColumns="*"

android:padding="3dip"

>

<TableRow>

<Button android:text="一" android:layout_width="1dip"></Button>

<Button android:text="两字" android:layout_width="1dip"></Button>

<Button android:text="三个字" android:layout_width="1dip"></Button>

</TableRow>

</TableLayout>

</LinearLayout>

说明:第4个TableLayout里的均匀布局的均匀效果是有限的。其有限性体现在,当该行有N列,则每列的控件内容不能多于1/N。

运行效果图:(如图1)

图1 TableLayout运行结果图

时间: 2024-10-07 03:28:56

android:TableLayout 布局详解的相关文章

Android六大布局详解——LinearLayout(线性布局)

Android六大布局 本篇开始介绍Android的六大布局的知识,一个丰富的界面显示总是要有众多的控件来组成的,那么怎样才能让这些控件能够按你的想法进行摆放,从而自定义你所想要的用户界面呢?这就牵涉到本章将要学习的知识----六大布局.本篇将依次对LinearLayout(线性布局).RelativeLayout(相对布局).TableLayout(表格布局).FrameLayout(帧布局).GridLayout(网格布局)以及AbsoluteLayout(绝对布局)进行介绍. Linear

Android六大布局详解——GridLayout(网格布局)

GridLayout 本章以一个小的实现示例讲述: 实现效果如图: 代码实现: <?xml version="1.0" encoding="utf-8"?> <GridLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:i

New UI-布局之TableLayout(表格布局)详解

New UI-布局之TableLayout(表格布局)详解  --转载请注明出处:coder-pig,欢迎转载,请勿用于商业用途! 小猪Android开发交流群已建立,欢迎大家加入,无论是新手,菜鸟,大神都可以,小猪一个人的 力量毕竟是有限的,写出来的东西肯定会有很多纰漏不足,欢迎大家指出,集思广益,让小猪的博文 更加的详尽,帮到更多的人,O(∩_∩)O谢谢! 小猪Android开发交流群:小猪Android开发交流群群号:421858269 新Android UI实例大全目录:http://b

android布局详解

http://blog.163.com/zhangzheming_282/blog/static/117920962013072502787/ AbsoluteLayout——绝对布局   必须设置   android:layout_x="30px"  android:layout_y="50px"一般不推荐用 FrameLayout———— 已层叠的方式显示,第一个添加的组件放在最底层,最后添加到框架中得试图显示的最顶层,上一层会覆盖下一层的控件. <Scr

TableLayout表格布局详解

1.TableLayout简介 2.TableLayout行列数的确定 3.TableLayout可设置的属性详解 4.一个包含4个TableLayout布局的实例及效果图 一.Tablelayout简介 Tablelayout类以行和列的形式对控件进行管理,每一行为一个TableRow对象,或一个View控件. 当为TableRow对象时,可在TableRow下添加子控件,默认情况下,每个子控件占据一列. 当为View时,该View将独占一行. 二.TableLayout行列数的确定 Tabl

Android 布局学习之——Layout(布局)详解二(常见布局和布局参数)

[Android布局学习系列]   1.Android 布局学习之——Layout(布局)详解一   2.Android 布局学习之——Layout(布局)详解二(常见布局和布局参数)   3.Android 布局学习之——LinearLayout的layout_weight属性   4.Android 布局学习之——LinearLayout属性baselineAligned的作用及baseline    Layout Parameters(布局参数): 在XML文件中,我们经常看到类似与lay

Android 布局详解

Android 布局详解 1.重用布局 当一个布局文件被多处使用时,最好<include>标签来重用布局. 例如:workspace_screen.xml的布局文件,在另一个布局文件中被重复使用三次,那么可使用如下的布局代码: <LinearLayout androd:layout_width=”fill_parent” androd:layout_height=”fill_parent” > <!-- 引用三次workspace_screen --> <incl

New UI-布局之LinearLayout(线性布局)详解

New UI-布局之LinearLayout(线性布局)详解  --转载请注明出处:coder-pig,欢迎转载,请勿用于商业用途! 小猪Android开发交流群已建立,欢迎大家加入,无论是新手,菜鸟,大神都可以,小猪一个人的 力量毕竟是有限的,写出来的东西肯定会有很多纰漏不足,欢迎大家指出,集思广益,让小猪的博文 更加的详尽,帮到更多的人,O(∩_∩)O谢谢! 小猪Android开发交流群:小猪Android开发交流群群号:421858269 新Android UI实例大全目录:http://

New UI-布局之GridLayout(网格布局)详解

New UI-布局之GridLayout(网格布局)详解  --转载请注明出处:coder-pig,欢迎转载,请勿用于商业用途! 小猪Android开发交流群已建立,欢迎大家加入,无论是新手,菜鸟,大神都可以,小猪一个人的 力量毕竟是有限的,写出来的东西肯定会有很多纰漏不足,欢迎大家指出,集思广益,让小猪的博文 更加的详尽,帮到更多的人,O(∩_∩)O谢谢! 小猪Android开发交流群:小猪Android开发交流群群号:421858269 新Android UI实例大全目录:http://bl