«

安卓学习3-布局管理-TableLayout

时间:2024-3-2 18:59     作者:韩俊     分类: Android


API:file:///D:/Android/sdk/docs/reference/android/widget/TableLayout.html

layout文件:

<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:stretchColumns="1">----------------------------------拉伸第一列已填满布局

    <TableRow>
        <TextView
            android:text="@string/hello_world"
            android:padding="3dip"
            android:background="#aabbcc"
            />
        <TextView
            android:text="@string/hello_world"
            android:padding="3dip"-------------------------------------设置上下左右padding
            android:background="#bbaacc"
            />
        <TextView
            android:text="@string/hello_world"
            android:padding="3dip"
            android:background="#bbccaa"
            />
    </TableRow>

    <TableRow>
        <TextView
            android:text="@string/hello_world"
            android:padding="3dip"
            android:background="#aabbcc"
            />
        <TextView
            android:text="@string/hello_world"
            android:padding="3dip"
            android:background="#bbaacc"
            />
        <TextView
            android:text="@string/hello_world"
            android:padding="3dip"
            android:background="#bbccaa"
            />
    </TableRow>

</TableLayout>

效果:



参考:TableLayout类



标签: android

热门推荐