1.假设设置了2个RadioButton,在代码中如何去实现选中其一就不能选另一个?
假设设置了2个RadioButton,ip计算php源码在代码中如何去实现选中其一就不能选另一个?
两个RadioButton要写在同一个组RadioGroup下面这样就可以了...xml文件如下:
<RadioGroup android:id="@+id/rg_sex" android:layout_width="fill_parent"
android:orientation="horizontal" android:layout_height="wrap_content">
<RadioButton android:layout_width="wrap_content"
android:text="@string/person_man" android:id="@id/+rb_person_man"
android:layout_height="wrap_content" android:checked="true" />
<RadioButton android:layout_width="wrap_content"
android:text="@string/person_woman" android:id="@id/+rb_person_woman"
android:layout_height="wrap_content" />
</RadioGroup>
java代码如下:
private RadioGroup rg_sex ;
...
rg_sex = (RadioGroup)findViewById(R.id.rg_sex);
rg_sex.setOnCheckedChangeListener(new RadioGroup.OnCheckedChangeListener() {
@Override
public void onCheckedChanged(RadioGroup group,python写源码 int checkedId) {
switch (checkedId) {
case R.id.rb_person_man:
System.out.println("男");
break;
case R.id.rb_person_woman:
System.out.println("女");
break ;
default:
break;
}
}
});