android布局 - 需要匹配表格行的高度以匹配使用布局权重的宽度

时间:2014-02-16 12:53:14

标签: android-layout tablerow

我想在6x3的网格中显示18个按钮。我使用了六个table rows,每行都有3个按钮。每个按钮的宽度设置为0dp并给出layout_weight=1

因为我想要使用的背景图像是一个圆形物体,我需要按钮的宽度和高度相同!我怎样才能做到这一点。 这是基本的xml

<ScrollView
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/scrollView">

    <LinearLayout
        android:layout_width="wrap_content"
        android:layout_height="fill_parent"
        android:orientation="vertical">

        <TableRow
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:id="@+id/tableRow">

            <ImageButton
                android:layout_width="0dp"
                android:layout_height="wrap_content"
                android:id="@+id/imageButton4"
                android:layout_weight="1"
                android:background="@drawable/sh_commonroom" />

            <ImageButton
                android:layout_width="0dp"
                android:layout_height="wrap_content"
                android:id="@+id/imageButton5"
                android:layout_weight="1"
                android:background="@drawable/sh_bedroom" />

            <ImageButton
                android:layout_width="0dp"
                android:layout_height="wrap_content"
                android:id="@+id/imageButton6"
                android:layout_weight="1"
                android:background="@drawable/sh_kitchen" />
        </TableRow>

        <TableRow
            android:layout_width="fill_parent"
            android:layout_height="fill_parent">
    ........................

目前它看起来像这样。

enter image description here

0 个答案:

没有答案