16

所以我有以下单选按钮。我想让它们像这样显示:

在此处输入图像描述

但是会发生这种情况:

无线电组问题

我怎样才能让它像上面那样显示?
我可以在 Eclipse 的 GUI 编辑器中移动它,但它会从 RadioGroup 中删除 RadioButton!
在组内,它忽略所有其他布局参数。

<RadioGroup
    android:id="@+id/radioGroup1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentLeft="true"
    android:layout_below="@+id/timeBar"
    android:layout_marginTop="43dp"
    android:orientation="horizontal" >

    <RadioButton
        android:id="@+id/privRadio0"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Everyone" />

    <RadioButton
    android:id="@+id/privRadio1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:checked="true"
    android:text="FriendOfFriends" />


 <RadioButton
    android:id="@+id/privRadio2"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Friends" />
</RadioGroup>
4

2 回答 2

12

你可以简单地复制这个类:

https://github.com/jevonbeck/AbstractMachine/blob/jevon_dev/app/src/main/java/org/ricts/abstractmachine/ui/utils/MultiLineRadioGroup.java

放入项目中的适当包中并在 XML 中实例化,如下所示:

<view
    class="mypackage.packagepath.MultiLineRadioGroup"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="horizontal"/>
于 2016-06-03T12:57:29.490 回答
1

您要的是FlowLayout。与 0gravity 更“静态”的解决方案相比,这种布局的好处是只在需要时才进行包装。

于 2012-08-09T20:20:45.687 回答