在Android中有一个复选框的控件CheckBox,本文中我们将介绍另一种相关控件,单选框控件RadioButton,与CheckBox不同的是单选框在选择的时候只能选择一个。
单选控件的使用一般需要与分组控件一起使用,因此需要了解这两个控件,RadioGroup与RadioButton,RadioGroup的作用是对不同的RadioButton做分组。
<RadioGroup android:id="@+id/ataawGroup"
android:layout_width="fill_parent" android:layout_height="fill_parent"
android:checkedButton="@+id/ataaw3" android:orientation="horizontal"
android:gravity="center_vertical|center_horizontal">
<RadioButton android:text="rad1" android:id="@+id/ataaw1"
android:layout_width="wrap_content" android:layout_height="wrap_content"></RadioButton>
<RadioButton android:text="rad2" android:id="@+id/ataaw2"
android:layout_width="wrap_content" android:layout_height="wrap_content"></RadioButton>
<RadioButton android:text="rad3" android:id="@+id/ataaw3"
android:layout_width="wrap_content" android:layout_height="wrap_content"></RadioButton>
</RadioGroup>
对RadioButton的事件处理,与ChenkBox不同的是,单选框控件我们只需要对其分组父控件RadioGroup进行监听即可。
RadioGroup ataaw = (RadioGroup) this.findViewById(R.id.ataawGroup);
//响应单选框组内的选中项发生变化时的事件
group.setOnCheckedChangeListener(new RadioGroup.OnCheckedChangeListener() {
@Override
public void onCheckedChanged(RadioGroup group, int checkedId) {
//doing actions
}
}); 文章
凤凰涅槃/浴火重生/马不停蹄/只争朝夕
隐姓埋名/低调华丽/简单生活/完美人生