Android开发之TableLayout表格布局

 更新时间:2016年03月25日 15:29:16   作者:许佳佳233  
这篇文章主要为大家详细介绍了Android开发之TableLayout表格布局,表格布局模型是以行列的形式管理子控件,对TableLayout表格布局感兴趣的小伙伴们可以参考一下

表格布局模型以行列的形式管理子控件,每一行为一个TableRow的对象,当然也可以是一个View的对象。TableRow可以添加子控件,每添加一个为一列。

TableLayout属性:

android:collapseColumns:将TableLayout里面指定的列隐藏,若有多列需要隐藏,请用逗号将需要隐藏的列序号隔开。            

android:stretchColumns:设置指定的列为可伸展的列,以填满剩下的多余空白空间,若有多列需要设置为可伸展,请用逗号将需要伸展的列序号隔开。               

android:shrinkColumns:设置指定的列为可收缩的列。当可收缩的列太宽(内容过多)不会被挤出屏幕。当需要设置多列为可收缩时,将列序号用逗号隔开。

 列元素(Button)属性:(奇怪的是button 里面没有android:layout_column 和android:layout_span两个属性,写进去无反应,还不知道为什么)

android:layout_colum:设置该控件在TableRow中指定的列。

android:layout_span:设置该控件所跨越的列数。

图片:

代码:

  <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
   xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    tools:context=".AndroidTableLayoutActivity" >
  
    <!-- 定义第一个表格,指定第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:id="@+id/btn01"
       android:layout_width="wrap_content"
       android:layout_height="wrap_content"
       android:text="独自一行" >
     </Button>
 
     <TableRow>
 
       <Button
         android:id="@+id/btn02"
         android:layout_width="wrap_content"
         android:layout_height="wrap_content"
         android:text="普通" >
       </Button>
 
       <Button
         android:id="@+id/btn03"
         android:layout_width="wrap_content"
         android:layout_height="wrap_content"
         android:text="允许被收缩允许被收缩允许被收缩允许被收缩" >
       </Button>
 
       <Button
         android:id="@+id/btn04"
         android:layout_width="wrap_content"
         android:layout_height="wrap_content"
         android:text="允许被拉伸" >
       </Button>
     </TableRow>
   </TableLayout>
   <!-- 定义第2个表格,指定第2列隐藏 -->
 
   <TableLayout
     android:id="@+id/tablelayout02"
     android:layout_width="match_parent"
     android:layout_height="wrap_content"
     android:collapseColumns="1" >
 
     <TableRow>
 
       <Button
         android:id="@+id/btn05"
         android:layout_width="wrap_content"
         android:layout_height="wrap_content"
         android:text="普通" >
       </Button>
 
       <Button
         android:id="@+id/btn06"
         android:layout_width="wrap_content"
         android:layout_height="wrap_content"
         android:text="被隐藏列" >
       </Button>
 
       <Button
         android:id="@+id/btn07"
         android:layout_width="wrap_content"
         android:layout_height="wrap_content"
         android:text="允许被拉伸" >
       </Button>
    </TableRow>
   </TableLayout>
   <!-- 定义第3个表格,指定第2列填满空白-->
 
   <TableLayout
     android:id="@+id/tablelayout03"
     android:layout_width="match_parent"
     android:layout_height="wrap_content"
     android:stretchColumns="1"
      >
 
     <TableRow>
 
       <Button
         android:id="@+id/btn08"
         android:layout_width="wrap_content"
         android:layout_height="wrap_content"
         android:text="普通" >
      </Button>
 
       <Button
         android:id="@+id/btn09"
         android:layout_width="wrap_content"
         android:layout_height="wrap_content"
        android:text="填满剩余空白" >
      </Button>
     </TableRow>
   </TableLayout>
  <!-- 定义第3个表格,指定第2列横跨2列-->
 
   <TableLayout
     android:id="@+id/tablelayout04"
     android:layout_width="match_parent"
     android:layout_height="wrap_content"
     >
 
     <TableRow>
 
      <Button
         android:id="@+id/btn10"
         android:layout_width="wrap_content"
         android:layout_height="wrap_content"
         android:text="普通" >
       </Button>
       
       <Button
         android:id="@+id/btn11"
        android:layout_column="2"
         android:layout_width="wrap_content"
         android:layout_height="wrap_content"
         android:text="填满剩余空白" >
       </Button>
    </TableRow>
   </TableLayout>
 </LinearLayout>

希望本文所述对大家学习Android软件编程有所帮助。

相关文章

  • Android Flutter表格组件Table的使用详解

    Android Flutter表格组件Table的使用详解

    Table组件不同于其它Flex布局,它是直接继承的RenderObjectWidget的。本篇文章主要介绍如何在页面中使用表格做一个记录,感兴趣的可以尝试一下
    2022-06-06
  • Android入门之ViewFlipper翻转视图的使用详解

    Android入门之ViewFlipper翻转视图的使用详解

    本篇给大家带了的是ViewFlipper,它是Android自带的一个多页面管理控件,且可以自动播放!本篇我们我们会使用两个例子:一个自动播放首页轮播页一个手动可左右滑动道页的轮播页来说透这个组件的使用,感兴趣的可以了解一下
    2022-11-11
  • Android GestureDetector用户手势检测实例讲解

    Android GestureDetector用户手势检测实例讲解

    这篇文章主要为大家详细介绍了Android GestureDetector用户手势检测实例,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2017-03-03
  • Android拨打电话功能实例详解

    Android拨打电话功能实例详解

    这篇文章主要介绍了Android拨打电话功能,结合实例形式较为详细的分析了Android实现拨打电话功能的具体步骤与功能代码,具有一定参考借鉴价值,需要的朋友可以参考下
    2016-02-02
  • Android Studio 3.0被调方法参数名提示的取消方法

    Android Studio 3.0被调方法参数名提示的取消方法

    这篇文章主要介绍了去掉android studio 3.0被调方法参数名提示的解决方法,在文章末尾给大家补充介绍了Android Studio 3.0 gradle提示太老的解决方法,非常不错,需要的朋友可以参考下
    2017-11-11
  • Android编程之监听器用法实例分析

    Android编程之监听器用法实例分析

    这篇文章主要介绍了Android编程之监听器用法,结合实例形式较为详细的分析了Android监听器的功能及针对短信的监听与响应操作技巧,需要的朋友可以参考下
    2016-01-01
  • Android中SurfaceView和view画出触摸轨迹

    Android中SurfaceView和view画出触摸轨迹

    这篇文章主要介绍了Android中SurfaceView和view画出触摸轨迹的相关资料,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2016-03-03
  • Android仿IOS回弹效果 支持任何控件

    Android仿IOS回弹效果 支持任何控件

    这篇文章主要为大家详细介绍了Android仿IOS回弹效果,支持任何控件,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2019-01-01
  • Android入门教程之ListView的具体使用详解

    Android入门教程之ListView的具体使用详解

    列表作为最常用的控件之一,还是有必要好好学习的,本章以一个初学者的角度来学习 ListView,ListView的属性,以及BaseAdapter简单定义,至于ListView优化这些, 我们一步步来
    2021-10-10
  • Android打开WebView黑屏闪烁问题排查

    Android打开WebView黑屏闪烁问题排查

    这篇文章主要介绍了Android打开WebView黑屏闪烁问题排查,文章通过详细的代码示例和图文介绍WebView黑屏闪烁的问题,感兴趣的小伙伴可以跟着小编一起来学习
    2023-05-05

最新评论