在广播组中设置顺序

时间:2013-09-11 08:06:39

标签: android radio-group

我有一个收音机组,其中包含3个按钮:

  • 介质

那就是它如何被布局。我不知道为什么但是中按钮与大按钮互换。我还原它,所以当我现在看看我的布局时,一切都按顺序排列,但随后我运行我的应用程序,它们仍然处于错误的顺序。是否有任何参数设置无线电组的顺序?

我得到了相对布局,这是描述单选按钮的代码

<RadioGroup
    android:id="@+id/size"
    android:layout_width="186dp"
    android:layout_height="wrap_content"
    android:layout_alignParentLeft="true"
    android:layout_below="@+id/ingredients"
    android:orientation="vertical" >

    <RadioButton
        android:id="@+id/small"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:checked="true"
        android:maxHeight="20dp"
        android:text="Small" />

    <RadioButton
        android:id="@+id/medium"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:maxHeight="20dp"
        android:text="Medium" />

    <RadioButton
        android:id="@+id/big"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:checked="true"
        android:maxHeight="20dp"
        android:text="Big" />

</RadioGroup>

0 个答案:

没有答案