我有4个单选按钮的radiogroup。问题是所有单选按钮都被选中。不明白是什么问题,我的布局如下:
<RadioGroup
android:id="@+id/status_yesno_radiogroup"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:weightSum="100">
<RadioButton
android:id="@+id/status_public"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:checked="true"
android:text="Public"
android:textStyle="bold"
android:layout_weight="50"/>
<RadioButton
android:id="@+id/status_private"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Private"
android:textStyle="bold"
android:layout_weight="50"/>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:weightSum="100">
<RadioButton
android:id="@+id/status_listed"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Listed"
android:textStyle="bold"
android:layout_weight="50"/>
<RadioButton
android:id="@+id/status_opc"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="OPC "
android:textStyle="bold"
android:layout_weight="50"/>
</LinearLayout>
</RadioGroup>
当我点击单选按钮时。正在检查所有单选按钮,请参阅截图