检查是否未选择RadioButton

时间:2016-03-16 21:32:33

标签: java android radio-button

我的代码中有这个逻辑

if(r40.isChecked()){ //do this }

效果很好,但我需要消极,“如果rb.isNotChecked”或“.isChecked()= false”

但我无法找到它,我也无法使用RadioGroup,因为我的所有RadioButton都不在其中,我手动控制它们

4 个答案:

答案 0 :(得分:2)

  

但我无法找到它

if(!r40.isChecked()){
  //do this
}

答案 1 :(得分:1)

尝试使用否定检查

Fabantou

"Madame Fabantou seems to me to be better," went on M. Leblanc, casting

Failure

Success

检查无线电是否检查。

答案 2 :(得分:1)

试试这个:

if (! r40.isChecked()) {    

       //Do something 
}

更详细地说,此代码中添加的感叹号会反转同一块中的以下代码,导致代码表示:

if (r40.isNotChecked()) {

       //Do something
}

我希望这有帮助!

答案 3 :(得分:0)

我的意思是你可以做if(r40.isChecked() == false){ //do something }
但是if(!r40.isChecked){ //do something }
更好/更清洁