标签:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context=".MainActivity" >
//定义一个TableLayout
<TableLayout
android:id="@+id/table1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
//第二列为拉伸
android:stretchColumns="1"
//第三列为缩放
android:shrinkColumns="2"
>
<Button
android:id="@+id/bt1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="确定"
/>
<TableRow
android:id="@+id/rw1"
android:layout_width="match_parent"
android:layout_height="match_parent"
>
<Button
android:id="@+id/bt2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="确定"
/>
<Button
android:id="@+id/bt3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="拉伸"
/>
<Button
android:id="@+id/bt4"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="缩放"
/>
</TableRow>
</TableLayout>
<TableLayout
android:id="@+id/table2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:stretchColumns="0"
android:shrinkColumns="1"
android:collapseColumns="2"
>
<Button
android:id="@+id/bt5"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="确定"
/>
<TableRow
android:id="@+id/rw2"
android:layout_width="match_parent"
android:layout_height="match_parent"
>
<Button
android:id="@+id/bt6"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="拉伸"
/>
<Button
android:id="@+id/bt7"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="缩放"
/>
<Button
android:id="@+id/bt8"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="隐藏"
/>
</TableRow>
</TableLayout>
<TableLayout
android:id="@+id/table3"
android:layout_width="match_parent"
android:layout_height="wrap_content"
//第三列为隐藏
android:collapseColumns="2"
>
<Button
android:id="@+id/bt9"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="确定"
/>
<TableRow
android:id="@+id/rw10"
android:layout_width="match_parent"
android:layout_height="match_parent"
>
<Button
android:id="@+id/bt11"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="确定"
/>
<Button
android:id="@+id/bt12"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="确定"
/>
<Button
android:id="@+id/bt13"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="隐藏"
/>
</TableRow>
</TableLayout>
</LinearLayout>
标签:
原文地址:http://www.cnblogs.com/aicx/p/4876919.html