• Android学习笔记之 android:collapseColumns ,android:shrinkColumns 和stretchColumns


    摘自:http://blog.csdn.net/sjf0115/article/details/7213565/

    TableLayout是一个使用复杂的布局,最简单的用法就仅仅是拖拉控件做出个界面,但实际上,会经常在代码里使用TableLayout,例如做出表格的效果。本文主要介绍TableLayout的基本使用方法。

    1. <?xml version="1.0" encoding="utf-8"?>  
    2.  <TableLayout xmlns:android="http://schemas.android.com/apk/res/android"  
    3.                android:layout_width="fill_parent"  
    4.                android:layout_height="fill_parent"  
    5.                >  
    6.      <TableRow>  
    7.      <Button   
    8.          android:id="@+id/button1"  
    9.          android:layout_width="wrap_content"  
    10.          android:layout_height="wrap_content"              
    11.          android:text="Button1"  
    12.          android:layout_column="0"/>  
    13.       <Button   
    14.           android:id="@+id/button2"  
    15.           android:layout_width="wrap_content"  
    16.           android:layout_height="wrap_content"  
    17.           android:text="Hello, I am a Button2"  
    18.           android:layout_column="1"/>  
    19.      </TableRow>  
    20.  </TableLayout>  


     

    android:stretchColumns = "指定的列" ------->以第0行为序,尽量把指定的列填充空白部分

    设置stretchColumns=0,则结果如下图,第0列被尽量填充

    设置stretchColumns=1,则结果如下图,第1列被尽量填充

    2 android:shrinkColumns = "指定的列":以第0行为序,自动延伸指定的列填充可用部分

    当LayoutRow里面的控件还没有布满布局时,shrinkColumns不起作用,如下图

    当LayoutRow里面的控件还没有布满布局时(改写一下第三个Button的内容)

    3 android:collapseColumns = “指定的列”  第0行为序,隐藏指定的列

    android:collapseColumns该属性为空时,如下图:

    android:collapseColumns=“0”  意思是把第0列去掉,如下图:

  • 相关阅读:
    列表和元组
    UVM宏
    UVM中重要函数
    组合模式(composite)
    装饰器模式(Decorator)
    适配器模式(Adapter)
    桥接模式
    原型模式(prototype)
    单例模式(singleton)
    UML类图
  • 原文地址:https://www.cnblogs.com/zhangmu126/p/5404262.html
Copyright © 2020-2023  润新知