欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  移动技术

Android 表格布局 TableLayout

程序员文章站 2022-11-06 20:20:01
属性介绍stretchColumns:列被拉伸shrinkColumns:列被收缩collapseColumns:列被隐藏举例测试 ... ......

属性介绍

stretchcolumns:列被拉伸

shrinkcolumns:列被收缩

collapsecolumns:列被隐藏

举例测试

    <tablelayout
        android:id="@+id/table1"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:stretchcolumns="0" >

        <tablerow
            android:id="@+id/row1"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content" >

            <textview
                android:id="@+id/textview"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:background="#fd8d8d"
                android:text="測試表格布局"
                android:textcolor="#000000" />
        </tablerow>
    </tablelayout>

    <tablelayout
        android:id="@+id/table2"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:shrinkcolumns="0,1,2,3" >

        <tablerow
            android:id="@+id/row2"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content" >

            <button
                android:id="@+id/button1"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="button1" />

            <button
                android:id="@+id/button2"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="button2" />

            <button
                android:id="@+id/button3"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="button3" />

            <button
                android:id="@+id/button4"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="button4" />
        </tablerow>
    </tablelayout>

    <tablelayout
        android:id="@+id/table3"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:stretchcolumns="0" >

        <tablerow
            android:id="@+id/row3"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content" >

            <edittext
                android:id="@+id/edittext"
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:text="查詢" />
        </tablerow>
    </tablelayout>