+ 1
How do I uncheck checkbox programmatically?
if (checkbox.isChecked ()){ //code for unchecking it. } How can I do it. First check if the checkbox is checked then uncheck it. Idea is to reset all the checkbox
1 Answer
+ 2
checkbox.setSelected(false);