我有单选组,其中包含 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>