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)
全栈程序员-站长的头像全栈程序员-站长


相关推荐

  • 【Redis】缓存穿透、缓存雪崩、缓存预热、缓存降级

    【Redis】缓存穿透、缓存雪崩、缓存预热、缓存降级【Redis】缓存穿透、缓存雪崩、缓存预热、缓存降级

    2022年4月25日
    40
  • nivicat15 激活码[在线序列号]

    nivicat15 激活码[在线序列号],https://javaforall.net/100143.html。详细ieda激活码不妨到全栈程序员必看教程网一起来了解一下吧!

    2022年3月18日
    134
  • oracle casewhen多条件查询_oracle exists

    oracle casewhen多条件查询_oracle exists它们的用法和意义c语言有when吗?应该是WHILE;case后面所跟的是一个常量,可以是数字,字符。用于列举SWITCH()条件出现的情况,举例:intn,N;switch(n){case1:N++;case2:.selectcase语句在有多个可能的条件必须被检查时使用。与if语句不同,selectcase语句在找到匹配的case表达式并执行了case表达式和…

    2022年9月6日
    3
  • 推荐12个运用Silverlight做的网站

    推荐12个运用Silverlight做的网站 一个用到zoom技术的示例站点:http://mosaicmaniac.com/?c=Zoom&i=horse5 下面这个站点一看应该是国内的站点,呵呵,非常具有中国特色http://www.ascendingintegration.com/Mahjongg/ 一个silverlight的拼图游戏,大家可以去尝试一下:http://www.silverlightshow.ne

    2022年10月18日
    0
  • IDEA热部署设置「建议收藏」

    IDEA热部署设置「建议收藏」转载位置:https://blog.csdn.net/nihao12323432/article/details/82664601

    2022年6月13日
    34
  • DOS命令 tasklist

    DOS命令 tasklist在WindowsXP中使用“Ctrl+Alt+Del”组合键,进入“Windows任务管理器”,在“进程”选项卡中可以查看本机完整的进程列表,而且可以通过手工定制进程列表的方式获得更多的进程信息,如会话ID、用户名等,但遗憾的是,我们查看不到这些进程到底提供了哪些系统服务。其实,在WindowsXP中新增的一个命令行工具“Tasklist.exe”就能实现上面的功能。作用:用来显示运行在本地

    2022年5月29日
    28

发表回复

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

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