我在一个xml文件中有两个广播组:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<RadioGroup
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<RadioButton
android:id="@+id/btn_1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:onClick="onRadioButtonClicked" />
<RadioButton
android:id="@+id/btn_2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:onClick="onRadioButtonClicked" />
</RadioGroup>
<RadioGroup
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<RadioButton
android:id="@+id/btn_3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:onClick="onRadioButtonClicked" />
<RadioButton
android:id="@+id/btn_4"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:onClick="onRadioButtonClicked" />
</RadioGroup>
</LinearLayout>
在主要活动中,我可以通过实施onRadioButtonClicked()
方法处理点击监听器上的单选按钮:
public void onRadioButtonClicked(View view) {
// Is the button now checked?
boolean checked = ((RadioButton) view).isChecked();
// Check which radio button was clicked
switch(view.getId()) {
case R.id.btn_1:
break;
case R.id.R.id.btn_2:
break;
case R.id.R.id.btn_3:
break;
case R.id.R.id.btn_4:
break;
}
}
现在,如果选中了一个单选按钮,则在同一个广播组中,另一个会自动取消选中。所以这是我的问题:如果选中一个按钮,我想要同一组中的其他按钮和另一组中的其他按钮未选中。这可行吗? 感谢。
答案 0 :(得分:1)
你可以手动完成。
case R.id.btn_1:
btn3.setChecked(false);
btn4.setChecked(false);
break;
case R.id.btn_2:
btn3.setChecked(false);
btn4.setChecked(false);
break;
case R.id.btn_3:
btn1.setChecked(false);
btn2.setChecked(false);
break;
case R.id.btn_4:
btn1.setChecked(false);
btn2.setChecked(false);
break;
希望它有所帮助。