TableLayout_android:strecthColums的用法

TableLayout是一个使用复杂的布局,最简单的用法就仅仅是拖拉控件做出个界面,但实际上,会经常在代码里使用TableLayout,例如做出表格的效果。本文主要介绍TableLayout的基本使用方法。

< ?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> 
<Button 
android:id="@+id/button1" 
android:layout_width="wrap_content" 
android:layout_height="wrap_content" 
android:text="Button1" 
android:layout_column="0"/> 
<Button 
android:id="@+id/button2" 
android:layout_width="wrap_content" 
android:layout_height="wrap_content" 
android:text="Hello, I am a Button2" 
android:layout_column="1"/> 
</TableRow> 
</TableLayout> 

www.2cto.com
 

 

TableLayout_android:strecthColums的用法_第1张图片

1 android:stretchColumns = "指定的列" ------->以第0行为序,尽量把指定的列填充空白部分

设置stretchColumns=0,则结果如下图,第0列被尽量填充

TableLayout_android:strecthColums的用法_第2张图片

设置stretchColumns=1,则结果如下图,第1列被尽量填充

 

TableLayout_android:strecthColums的用法_第3张图片

2 android:shrinkColumns = "指定的列":以第0行为序,自动延伸指定的列填充可用部分

当LayoutRow里面的控件还没有布满布局时,shrinkColumns不起作用,如下图

当LayoutRow里面的控件还没有布满布局时(改写一下第三个Button的内容)

TableLayout_android:strecthColums的用法_第4张图片

3 android:collapseColumns = “指定的列” 第0行为序,隐藏指定的列>

android:collapseColumns该属性为空时,如下图:

android:collapseColumns=“0” 意思是把第0列去掉,如下图:

TableLayout_android:strecthColums的用法_第5张图片

你可能感兴趣的:(android,layout,布局)