如何用C++模拟在网页上选中radio button中的一个按钮

2025-12-17 17:20:52
推荐回答(1个)
回答1:

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);
}
}