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

在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.setOnCheckedChangeListen er(newRadioGroup.OnCheckedChangeListener(){     
                      @Override
                      public void onCheckedChanged(RadioGroup group, int checkedId){
                              //doingactions                               
                      }
});

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值