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 に答える