我尝试在2行中的一个Radio组中设置4个单选按钮,但问题是当我采用水平方向的线性布局时,无线电组功能不起作用。所有单选按钮选择。一次只能选择一个按钮。
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
<RadioButton
android:id="@+id/r1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="@string/lbl1" />
<RadioButton
android:id="@+id/r2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="@string/lbl2" />
</LinearLayout>
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
<RadioButton
android:id="@+id/r3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="@string/lbl3" />
<RadioButton
android:id="@+id/r4"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="@string/lbl4" />
</LinearLayout>
</RadioGroup>
答案 0 :(得分:2)
RadioGroup目前不允许嵌套布局。 (有关详细信息,请参阅AOSP问题#8952)
因此,RadioButtons必须是父RadioGroup的直接子节点。
既然如此,并注意到RadioGroup扩展了LinearLayout,我认为你不得不在一行或一列中列出所有单选按钮。
顺便说一句,没有什么可以阻止你创建自己的RadioGroup版本,它可以从像RelativeLayout这样更灵活的东西扩展。您可以从RadioGroup中的代码开始,并根据您的需要进行调整。
答案 1 :(得分:0)
要使RadioGroup具有列,只需在其中添加GridLayout并更改 android:columnCount 参数。 但是,您必须重写所有单选按钮的OnCheckedChangeListeners,因为当您将RadioButtons放在GridLayout中时,它们不再分组。
<RadioGroup
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal">
<GridLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:columnCount="3">
<RadioButton
android:id="@+id/rbtn_1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
/>
<RadioButton
android:id="@+id/rbtn_2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
/>
.....
</GridLayout>
</RadioGroup>
答案 2 :(得分:-1)
我不知道你是否仍然需要另一种选择,但你可以使用这个“强制”第二行:
这是一个例子:
<RadioGroup
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:id="@+id/Rgroup">
<RadioButton
android:id="@+id/r1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/lbl1" />
<RadioButton
android:id="@+id/r2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/lbl2" />
<RadioButton
android:id="@+id/r3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="-180dp"
android:layout_marginTop="40dp"
android:text="@string/lbl3" />
<RadioButton
android:id="@+id/r4"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="0dp"
android:layout_marginTop="40dp"
android:text="@string/lbl4" />
</RadioGroup>