How to check if “Radiobutton” is checked?

前端 未结 10 437
萌比男神i
萌比男神i 2020-12-06 06:01

I would like to make a structure with the condition (if-else) RadioButton

I want that when the Radiobutton RB1 is selected, this function is ac

10条回答
  •  攒了一身酷
    2020-12-06 06:38

    radiobuttonObj.isChecked() will give you boolean

    if(radiobuttonObj1.isChecked()){
    //do what you want 
    }else if(radiobuttonObj2.isChecked()){
    //do what you want 
    }
    

提交回复
热议问题