RadioButton监听事件
- 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
- 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
- 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。
RadioButton使用说明
2012-01-19
RadioButton(单选按钮)在Android开发中应用的非常广泛,比如一些选择项的时候,会用到单选按钮。它是一种单个圆形单选框双状态的按钮,可以选择或不选择。在RadioButton 没有被选中时,用户能够按下或点击来选中它。但是,与复选框相反,用户一旦选中就不能够取消选中。
实现RadioButton由两部分组成,也就是RadioButton和RadioGroup配合使
用.RadioGroup是单选组合框,可以容纳多个RadioButton的容器.在没有RadioGroup 的情况下,RadioButton可以全部都选中;当多个RadioButton被RadioGroup包含的情况下,RadioButton只可以选择一个。并用setOnCheckedChangeListener来对单选按钮进行监听。
private RadioButton rB_boy;
private RadioButton rB_girl;
private RadioGroup rG_content;
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(yout.main);
//RadioGroup
this.rG_content=(RadioGroup)findViewById(R.id.rG_Con);
//RadioButton
this.rB_boy=(RadioButton)findViewById(R.id.rd_boy);
this.rB_girl=(RadioButton)findViewById(R.id.rd_girl);
this.rB_boy.setText("这是男");
this.rB_girl.setText("这是女");
//添加事件监听器
this.rG_content.setOnCheckedChangeListener(new OnCheckedChangeListener(){
public void onCheckedChanged(RadioGroup group, int checkedId)
{
if(checkedId==R.id.rd_boy)
{
Toast.makeText(getApplicationContext(), "你选择的是男孩!",Toast.LENGTH_SHORT).show();
}
else if(checkedId==R.id.rd_girl)
{
Toast.makeText(getApplicationContext(), "你选择的是女孩!",Toast.LENGTH_SHORT).show();
}
}
});
}