Android布局之表格布局[通俗易懂]

Android布局之表格布局[通俗易懂]表格布局(Tablelayout) 简介:       Tablelayout类以行和列的形式对控件进行管理,每一行为一个TableRow对象,或一个View控件。     当为TableRow对象时,可在TableRow下添加子控件,默认情况下,每个子控件占据一列。     当为View时,该View将独占一行。表格布局是以行和列的形式来对控件…

大家好,又见面了,我是你们的朋友全栈君。

表格布局(Tablelayout)

 

简介:   

         Tablelayout类以行和列的形式对控件进行管理,每一行为一个TableRow对象,或一个View控件。

         当为TableRow对象时,可在TableRow下添加子控件,默认情况下,每个子控件占据一列。

         当为View时,该View将独占一行。

表格布局是以行和列的形式来对控件进行管理的,所以我们来说说表格布局对行和列的确定

TableLayout的行数

在开发中由我们来直接指定,就是说有多少个TableRow对象或view控件就会有多少行。

TableLayout的列数

等于含有最多子控件的TableRow的列数。如第一(行)TableRow含2个子控件,第二(行)TableRow含3个,第三(行)TableRow含4个,那么这个表格布局的列数就是4列。

 

TableLayout可设置的属性

 表格布局可以设置的属性有两种:全局属性、单元格属性。

 

全局属性(列属性):  全局属性有三个属性

   Android:stretchColumns    设置可伸展的列。该列可以向行方向伸展,最多可占据一整行。

  Android:shrinkColumns      设置可收缩的列。(当该列子控件里的内容太多,行内显示不完的时候会向列的方向显示内容)。

  Android:collapseColumns  设置要隐藏的列。

下面就来举例说明一下:

Android:stretchColumns=”0″           第0列可伸展

Android:shrinkColumns=”1,2″         第1,2列皆可收缩

Android:collapseColumns=”1″         隐藏第一行

 

单元格属性:  单元格属性有两个属性

Android:layout_column    指定该单元格在第几列显示

Android:layout_span        指定该单元格占据的列数(如果我们在使用中没有指定,那么默认值将为1)

下面就来举例说明一下:

Android:layout_column=”1″    该控件在第1列

Android:layout_span=”2″        该控件占了2列

 

下面我们来整体运用一下表格布局里的属性(代码和效果图):

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:padding="3dip"
    >

    <!-- 第1个TableLayout,用于描述表中的列属性。第0列可伸展,第1列可收缩 ,第2列被隐藏-->
    <TextView
        android:text="第一个表格:全局设置:列属性设置"
        android:layout_height="wrap_content"
        android:layout_width="wrap_content"
        android:textSize="15sp"
        android:background="#7f00ffff"/>
    <TableLayout
        android:id="@+id/table1"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:stretchColumns="0"
        android:shrinkColumns="1"
        android:collapseColumns="2"
        android:padding="3dip">
        <TableRow>
            <Button android:text="该列可以伸展"/>
            <Button android:text="该列可以收缩"/>
            <Button android:text="被隐藏了"/>
        </TableRow>

        <TableRow>
            <TextView android:text="向行方向伸展,可以伸展很长    "/>
            <TextView android:text="向列方向收缩,*****************************************************************************************可以伸缩很长"/>
        </TableRow>

    </TableLayout>

    <!-- 第2个TableLayout,用于描述表中单元格的属性,包括:android:layout_column 及android:layout_span-->
    <TextView
        android:text="第二个:单元格设置:指定单元格属性设置"
        android:layout_height="wrap_content"
        android:layout_width="wrap_content"
        android:textSize="15sp"
        android:background="#7f00ffff"/>
    <TableLayout
        android:id="@+id/table2"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:padding="3dip">
        <TableRow>
            <Button android:text="第1列"/>
            <Button android:text="第2列"/>
            <Button android:text="第3列"/>
        </TableRow>

        <TableRow>
            <TextView android:text="指定在第2列" android:layout_column="1"/>
        </TableRow>

        <TableRow>
            <TextView
                android:text="第二列和第三列!!!!!!!!!!!!"
                android:layout_column="1"
                android:layout_span="2"
                />
        </TableRow>

    </TableLayout>

    <!-- 第3个TableLayout,使用可伸展特性布局-->
    <TextView
        android:text="第三个表格:非均匀布局,控件长度根据内容伸缩"
        android:layout_height="wrap_content"
        android:layout_width="wrap_content"
        android:textSize="15sp"
        android:background="#7f00ffff"/>
    <TableLayout
        android:id="@+id/table3"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:stretchColumns="*"
        android:padding="3dip"
        >
        <TableRow>
            <Button android:text="一笑山河红袖遮" ></Button>
            <Button android:text="姜泥"></Button>
            <Button android:text="两剑惊破旧山河" ></Button>
        </TableRow>
    </TableLayout>

    <!-- 第4个TableLayout,使用可伸展特性,并指定每个控件宽度一致,如1dip-->
    <TextView
        android:text="表4:均匀布局,控件宽度一致"
        android:layout_height="wrap_content"
        android:layout_width="wrap_content"
        android:textSize="15sp"
        android:background="#7f00ffff"/>
    <TableLayout
        android:id="@+id/table4"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:stretchColumns="*"
        android:padding="3dip"
        >
        <TableRow>
            <Button android:text="徐凤年" android:layout_width="1dip"></Button>
            <Button android:text="温华" android:layout_width="1dip"></Button>
            <Button android:text="天不生我李淳罡" android:layout_width="1dip"></Button>
        </TableRow>
    </TableLayout>
</LinearLayout>

 

Android布局之表格布局[通俗易懂]

说完了怎么用,咱们再来说说表格布局的优点和缺点:

 

优点:

1、结构位置更简单 

2、容易上手 

3、 数据化的存放更合理。

例如,学生信息这样的表,相对简单,如果用别的布局的话就比较麻烦信息也比较杂乱。

缺点:

1、 标签结构多,代码复杂 

2、 表格布局,不利于搜索引擎抓取信息
 

 

 

这就是Android常用布局中的表格布局啦~

 

 

 

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请联系我们举报,一经查实,本站将立刻删除。

发布者:全栈程序员-站长,转载请注明出处:https://javaforall.net/146261.html原文链接:https://javaforall.net

(0)
全栈程序员-站长的头像全栈程序员-站长


相关推荐

  • join方法的使用

    join方法的使用一、join方法1.1jon方法的作用使所属的线程对象x正常执行run()方法中的任务,而使当前线程y无限期的阻塞,直到x线程销毁后再继续执行线程y后面的代码。join方法具有使线程排队运行的作用,有些类似同步的运行的效果。1.2join与synchronized的区别join在内部使用wait()方法进行等待,而synchronized关键字使用的是”对象监视器”原理作为同步。…

    2022年6月11日
    48
  • pycharn激活2021破解方法

    pycharn激活2021破解方法,https://javaforall.net/100143.html。详细ieda激活码不妨到全栈程序员必看教程网一起来了解一下吧!

    2022年3月14日
    85
  • android4种activity启动模式_简述activity的启动模式

    android4种activity启动模式_简述activity的启动模式测试应用主activityA使用默认启动模式ACTIVITYMANAGERACTIVITIES(dumpsysactivityactivities)Display#0(activitiesfromtoptobottom): Stack#5:   Taskid#27   *TaskRecord{4f29769#27A=com.wp.laun

    2022年9月27日
    2
  • ORA-01017: invalid username/password; logon denied Oracle数据库报错解决方案一

    ORA-01017: invalid username/password; logon denied Oracle数据库报错解决方案一ORA-01017:invalidusername/password;logondenied错误(程序中的用户和密码无法登录,登录被拒)。Oracle11g版本初次安装使用报错:解决方法1创建新用户:打开sqlplus以系统身份登录:指令如下sys/managerassysdba;创建新用户:语法:createuser用户名identifiedb…

    2022年5月6日
    144
  • xshell连接虚拟机使用的是什么连接模式_虚拟机安装ssh服务

    xshell连接虚拟机使用的是什么连接模式_虚拟机安装ssh服务XShell使用前提:1.对应的需要连接的虚拟机在vm中开机着2.下载并安装好XShell3.虚拟机网络连通(具体可看(5条消息)Hadoop(1)——Hadoop集群构建(4)——Linux系统网络配置_连胜是我偶像的博客-CSDN博客使用教程:1.点击新建,输入名称(该名称为xshell中使用的名称),输入主机(对应虚拟机的ip地址)2.右键新建的会话,点击打开3.输入账号密码进行登录4.成功标志…

    2025年11月19日
    6
  • Jquery实现可拖拽的树菜单「建议收藏」

    Jquery实现可拖拽的树菜单

    2022年2月5日
    41

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注

关注全栈程序员社区公众号