Как установить этот tableLayout в Android? - PullRequest
1 голос
/ 08 октября 2011

Я хочу реализовать этот тип просмотра в моем приложении. , .

data1    hello   hi 
data2    hello2  hi
data3    hi      Hello

Я хочу знать, какой из них лучше всего настроить? TableLayout или другое linearLayout.RelativeLayout ??? Я также хочу, чтобы код XML установил этот макет. , Спасибо.

Ответы [ 2 ]

4 голосов
/ 08 октября 2011

Попробуйте это,

<?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>
2 голосов
/ 08 октября 2011

TableLayout предпочтительнее в вашем случае. Пример: http://www.tutorialforandroid.com/2008/12/simple-tablelayout-in-android.html

@ примечание: просто не поленитесь Google!

...