文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

Android布局之TableLayout表格布局

2022-06-06 09:22

关注

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

三个常用的属性

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

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

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

学习导图

(1)TableLayout的相关简介

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

(2)如何确定行数

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

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

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

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

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

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

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

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


<?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">
  <!--定义第一个表格布局,指定第二列允许收缩,第三列拉伸-->
  <TableLayout
    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:text="独自占一行"
      />
    <TableRow>
      <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>
  <!--定义第二个表格布局指定第二列隐藏-->
  <TableLayout
    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>
      <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>
  <!--定义第三个表格布局,指定第二列,第三列都可以被拉伸-->
  <TableLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:stretchColumns="1,2">
    <!-- 直接添加组件会独占一行-->
    <Button
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:text="独自占一行"
      />
    <TableRow>
      <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>
</LinearLayout>

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

您可能感兴趣的文章:android Activity线性布局和表格布局实例讲解Android 表格布局TableLayout示例详解详解Android TableLayout表格布局Android开发之TableLayout表格布局Android布局之表格布局TableLayout详解android layout 按比例布局的代码android Activity相对布局的使用方法Android动态添加设置布局与控件的方法Android开发菜单布局之表格布局示例


阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     807人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     351人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     314人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     433人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     221人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-移动开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯