Android中的表格布局TableLayout

表格布局最主要的三个属性:


XML代码实例:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >
    <!-- 定义第一个表格布局,指定第2列允许收缩,第3列允许拉伸 -->
    <TableLayout android:id="@+id/TableLayout01"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:shrinkColumns="1"
        android:stretchColumns="2"
        >
        <!-- 直接添加按钮,它自己会占一行 -->
        <Button android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:id="@+id/ok1"
            android:text="独"
            />
        <!-- 添加一个表格行 -->
        <TableRow android:layout_width="match_parent" android:layout_height="wrap_content">
            <Button android:id="@+id/ok2" android:layout_width="wrap_content"
                android:layout_height="wrap_content" android:text="普"/>
            <Button android:id="@+id/ok3" android:layout_width="wrap_content"
                android:layout_height="wrap_content" android:text="收"/>
            <Button android:id="@+id/ok4" android:layout_width="wrap_content" 
                android:layout_height="wrap_content" android:text="拉"/>
        </TableRow>
    </TableLayout>
    
    <!-- 定义第二个表格布局,指定第2列隐藏 -->
    <TableLayout android:id="@+id/TableLayout02" android:layout_marginTop="30dp"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:collapseColumns="1"
        >
        <!-- 直接添加按钮,它自己会占一行 -->
        <Button android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="独"
            />
           <TableRow android:layout_width="match_parent" android:layout_height="wrap_content">
            <Button  android:layout_width="wrap_content"
                android:layout_height="wrap_content" android:text="普"/>
            <Button  android:layout_width="wrap_content"
                android:layout_height="wrap_content" android:text="收"/>
            <Button  android:layout_width="wrap_content" 
                android:layout_height="wrap_content" android:text="拉"/>
        </TableRow>
    </TableLayout>
    
    <!-- 定义第三个表格布局,指定第2列和第三列允许被拉伸 -->
	<TableLayout android:id="@+id/TableLayout03"
	    android:layout_width="match_parent"
	    android:layout_height="wrap_content"
	    android:stretchColumns="1,2" android:layout_marginTop="30dp"
	    >
      <Button android:layout_width="wrap_content"
     android:layout_height="wrap_content"
     android:text="独"
     />
      <TableRow android:layout_width="match_parent" android:layout_height="wrap_content">
            <Button  android:layout_width="wrap_content"
                android:layout_height="wrap_content" android:text="普通按钮"/>
            <Button  android:layout_width="wrap_content"
                android:layout_height="wrap_content" android:text="拉"/>
            <Button  android:layout_width="wrap_content" 
                android:layout_height="wrap_content" android:text="拉"/>
       </TableRow>
       <!-- 定义一个表格行 -->
      <TableRow android:layout_width="match_parent" android:layout_height="wrap_content">
           <Button  android:layout_width="wrap_content"
                android:layout_height="wrap_content" android:text="普"/>
            <Button  android:layout_width="wrap_content"
                android:layout_height="wrap_content" android:text="拉"/>
      </TableRow>
	</TableLayout>
</LinearLayout>

效果:


总结:

如果没有用tableRow,直接用组件,将自己独占一行,并且填充父窗口

而如果用tableRow,上下两行各列将对齐。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值