如何实现代码控制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中某一个按钮选中

如何取消选中radiogroup中的单选按钮并听取操作

如何在radiogroup中将选中的单选按钮设置为默认值?

检查从android中的每个radiogroup中至少选择一个单选按钮?

Android:如何在 Java 中以编程方式选中/取消选中 RadioGroup 中的单选按钮

如何将 RadioGroup 移动到指定的 EditText Android Dev下方