如何在android中设置这个表布局



我想在我的应用程序中实现这种类型的视图…

data1    hello   hi 
data2    hello2  hi
data3    hi      Hello

我想知道,哪一个是最好的设置方式??TableLayout或其他线性布局。使用? ?我还希望xml代码设置这个布局。谢谢。

试试这个,

<?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">
    <TableLayout android:layout_width="fill_parent"
        android:layout_height="wrap_content">
        <TableRow android:weightSum="3">
            <TextView android:layout_weight="1" android:layout_width="wrap_content"
                android:layout_height="wrap_content" android:text="hello" />
            <TextView android:layout_weight="1" android:layout_width="wrap_content"
                android:layout_height="wrap_content" android:text="hello" />
            <TextView android:layout_weight="1" android:layout_width="wrap_content"
                android:layout_height="wrap_content" android:text="hello" />
        </TableRow>
        <TableRow android:weightSum="3">
            <TextView android:layout_weight="1" android:layout_width="wrap_content"
                android:layout_height="wrap_content" android:text="hello" />
            <TextView android:layout_weight="1" android:layout_width="wrap_content"
                android:layout_height="wrap_content" android:text="hello" />
            <TextView android:layout_weight="1" android:layout_width="wrap_content"
                android:layout_height="wrap_content" android:text="hello" />
        </TableRow>
        <TableRow android:weightSum="3">
            <TextView android:layout_weight="1" android:layout_width="wrap_content"
                android:layout_height="wrap_content" android:text="hello" />
            <TextView android:layout_weight="1" android:layout_width="wrap_content"
                android:layout_height="wrap_content" android:text="hello" />
            <TextView android:layout_weight="1" android:layout_width="wrap_content"
                android:layout_height="wrap_content" android:text="hello" />
        </TableRow>
    </TableLayout>
</LinearLayout>

TableLayout是您的首选。例如:https://web.archive.org/web/20210127143452/http://www.tutorialforandroid.com/2008/12/simple-tablelayout-in-android.html

最新更新