Android开发中单选框控件RadioButton的使用

在Android中有一个复选框的控件CheckBox,本文中我们将介绍另一种相关控件,单选框控件RadioButton,与CheckBox不同的是单选框在选择的时候只能选择一个。

单选控件的使用一般需要与分组控件一起使用,因此需要了解这两个控件,RadioGroup与RadioButton,RadioGroup的作用是对不同的RadioButton做分组。

   android:layout_width="fill_parent"android:layout_height="fill_parent"
   android:checkedButton="@+id/ataaw3"android:orientation="horizontal"
   android:gravity="center_vertical|center_horizontal">
         android:layout_width="wrap_content"android:layout_height="wrap_content">
         android:layout_width="wrap_content"android:layout_height="wrap_content">
         android:layout_width="wrap_content"android:layout_height="wrap_content">

对RadioButton的事件处理,与ChenkBox不同的是,单选框控件我们只需要对其分组父控件RadioGroup进行监听即可。

RadioGroup ataaw = (RadioGroup)this.findViewById(R.id.ataawGroup);
 
      //响应单选框组内的选中项发生变化时的事件
group.setOnCheckedChangeListener(newRadioGroup.OnCheckedChangeListener(){   
           @Override
           public void onCheckedChanged(RadioGroup group, int checkedId){
               //doingactions                
           }
});

你可能感兴趣的:(Android)