Как я могу создать этот макет, который охватывает несколько строк, используя Android TableLayout? - PullRequest
2 голосов
/ 10 августа 2011

Как мне создать следующий макет, используя tablelayout? Охват столбцов прост, но я не нашел четких указаний относительно охвата строк.

image

1 Ответ

5 голосов
/ 10 августа 2011

попробуйте это ... Вы можете использовать свойство layout_weight для достижения того, что вы пытаетесь сделать ... приведенный ниже макет будет иметь макет, показанный вами на рисунке выше.

<?xml version="1.0" encoding="utf-8"?><TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TableRow>
    <TableLayout android:layout_width="0dip"
        android:layout_weight="2" android:layout_height="fill_parent">
        <TableRow android:layout_width="0dip" android:layout_weight="2"
            android:layout_height="0dip">
            <View android:layout_width="0dip" android:layout_weight="1"
                android:layout_margin="5dip" android:layout_height="fill_parent"
                android:background="#fff"></View>
            <View android:layout_width="0dip" android:layout_weight="1"
                android:background="#eee" android:layout_margin="5dip"
                android:layout_height="fill_parent"></View>
        </TableRow>
        <TableRow android:layout_width="0dip" android:layout_weight="2"
            android:layout_height="0dip">
            <View android:layout_width="0dip" android:layout_weight="1"
                android:background="#eee" android:layout_height="fill_parent"
                android:layout_margin="5dip"></View>
            <View android:layout_width="0dip" android:layout_weight="1"
                android:layout_margin="5dip" android:layout_height="fill_parent"
                android:background="#fff"></View>
        </TableRow>
    </TableLayout>
    <TableLayout android:layout_width="0dip"
        android:layout_weight="1" android:layout_height="fill_parent">
        <TableRow>
            <View android:layout_width="0dip" android:layout_weight="1"
                android:background="#bbb" android:layout_height="fill_parent"></View>
        </TableRow>

    </TableLayout>
</TableRow>

В приведенном выше коде замените вид на тот, который вы хотите там ...

...