如果屏幕太长,请将水平RadioButtons换行

时间:2012-08-09 20:03:01

标签: android android-layout

所以我有以下radiobuttons。我想让它们显示如下:

enter image description here

但是会发生这种情况:

radiogroup problem

如何才能让它像上面一样展示?我可以在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>

2 个答案:

答案 0 :(得分:7)

您只需复制此类:

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"/>

答案 1 :(得分:2)

你要求的是FlowLayout。这种布局的好处是只在需要时进行包装,而不是0gravity的“静态”解决方案。