如何实现代码控制RadioGroup中某一个按钮选中
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何实现代码控制RadioGroup中某一个按钮选中相关的知识,希望对你有一定的参考价值。
参考技术A mButton1 = (RadioButton)findViewById(R.id.radioButton1);mButton2 = (RadioButton)findViewById(R.id.radioButton2);
mButton1.setOnCheckedChangeListener(new OnCheckedChangeListener()
@Override
public void onCheckedChanged(CompoundButton arg0, boolean arg1)
if(arg1)
Toast.makeText(getApplicationContext(),"1 first click 1",0).show();
mButton2.setChecked(false);
);
mButton2.setOnCheckedChangeListener(new OnCheckedChangeListener()
@Override
public void onCheckedChanged(CompoundButton arg0, boolean arg1)
if(arg1)
Toast.makeText(getApplicationContext(),"2 first click 1",0).show();
mButton1.setChecked(false);
本回答被提问者和网友采纳
以上是关于如何实现代码控制RadioGroup中某一个按钮选中的主要内容,如果未能解决你的问题,请参考以下文章
android如何实现代码控制RadioGroup中某一个按钮选中
检查从android中的每个radiogroup中至少选择一个单选按钮?