0

我试图在 Android 中制作这样的表格布局。

第一列 - 2 个按钮,下一列是第二行中的一个按钮。按钮的大小应该相同。我使用 0 宽度和重量 1 并拉伸列。

布局

在 XML 中:

    <TableLayout
        android:id="@+id/tableLayout1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_centerInParent="true"
        android:stretchColumns="*" >

        <TableRow>

            <Button
                android:id="@+id/button_stereo_system_state"
                style="@style/StyleButton"
                android:background="@drawable/background_button_off"
                android:drawableTop="@drawable/icon_button_on_off"
                android:text="@string/button_text_option_off" />

            <Button
                android:id="@+id/button_stereo_system_radio"
                style="@style/StyleButton"
                android:background="@drawable/background_button_off"
                android:drawableTop="@drawable/icon_button_play"
                android:text="@string/button_text_play_radio" />
        </TableRow>
        <TableRow>
            <Button
                android:id="@+id/button_stereo_system_cd"
                style="@style/StyleButton"
                android:layout_column="0"
                android:background="@drawable/background_button_off"
                android:drawableTop="@drawable/icon_button_play"
                android:text="@string/button_text_play_cd" />
        </TableRow>
    </TableLayout>

在风格上:

<style name="StyleButton">
        <item name="android:layout_height">wrap_content</item>
        <item name="android:layout_width">0dip</item>
        <item name="android:layout_weight">1</item>
        <item name="android:layout_margin">10dip</item>
        <item name="android:textSize">19sp</item>
        <item name="android:textColor">@color/color_text_button</item>
</style>

使用第二行中的此源代码,按钮被拉伸并占据整行。这个怎么做?

4

1 回答 1

1

一种解决方案(正如您在评论中推测的那样)是添加另一个与其余按钮相同的按钮并将可见性设置为不可见。(请参阅此处的文档)。

基本上只需将以下行添加到您的 XML 中:

android:visibility="invisible"
于 2012-09-29T11:33:58.477 回答