android表格布局最后一个组件,Android布局之TableLayout表格布局

本文详细介绍了Android中的TableLayout布局,用于按照行和列的方式组织控件。讲解了TableRow的使用,以及如何通过android:shrinkColumns、android:stretchColumns和android:collapseColumns属性来调整列的行为。通过实例展示了如何实现控件的收缩、拉伸和隐藏,帮助开发者更好地理解和应用TableLayout。
摘要由CSDN通过智能技术生成

Tablelayout类以行和列的形式对控件进行管理,每一行为一个TableRow对象,或一个View控件。当为TableRow对象时,可在TableRow下添加子控件,默认情况下,每个子控件占据一列。 当为View时,该View将独占一行。

三个常用的属性

android:collapseColumns:设置需要被隐藏的列的序号

android:shrinkColumns:设置允许被收缩的列的列序号

android:stretchColumns:设置运行被拉伸的列的列序号

学习导图

f3ab39873ab320913a949bff9d4e09da.png

(1)TableLayout的相关简介

java的swing编程和html中经常会使用到表格,可见表格的应用开发中使用还是比较多的,同样android也为我们提供这样的布局方式。

(2)如何确定行数

a:直接向TableLayout组件,直接占一行

b:如果想在一行添加多个组件, 就需要使用TableRow中添加

c:TableRow中有多少个组件,这一行就会有多少列

(3)三个常用属性(都是从零开始计数)

Shrinkable:如果某一列被设置为Shrinkable,那么该列的所有单元格的宽度可以被收缩,以保证表格能适应父容器的宽度;

Stretchable:如果某一列被设置为Stretchable,那么该列的所有单元格的宽度可以拉伸,以保证组件完全填充表格空余空间;

Collapsed:如果某一列被设置为Collapsed,那么该列的所有单元格的都会被隐藏;

(4)使用实例(为了演示效果没有,所有组件都没有设置id)

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

android:layout_width="match_parent"

android:layout_height="match_parent"

android:orientation="vertical">

android:layout_width="match_parent"

android:layout_height="wrap_content"

android:shrinkColumns="1"

android:stretchColumns="2">

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:text="独自占一行"

/>

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:text="普通按钮"/>

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:text="收缩按钮"/>

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:text="拉伸按钮"/>

android:layout_width="match_parent"

android:layout_height="wrap_content"

android:collapseColumns="1">

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:text="独自占一行"

/>

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:text="普通按钮"/>

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:text="普通按钮"/>

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:text="普通按钮"/>

android:layout_width="match_parent"

android:layout_height="wrap_content"

android:stretchColumns="1,2">

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:text="独自占一行"

/>

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:text="普通按钮"/>

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:text="拉伸按钮"/>

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:text="拉伸按钮"/>

以上内容是小编给大家介绍的android布局之TableLayout表格布局,希望大家喜欢。

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值