CheckBox checkOne = (CheckBox) findViewById(R.id.checkOne);
checkOne.setSelected(true);
CheckBox checkTwo = (CheckBox) findViewById(R.id.checkTwo);
checkTwo.setSelected(true);
CheckBox checkThree = (CheckBox) findViewById(R.id.checkThree);
checkThree.setSelected(true);
I am using the above code to check or uncheck multiple check boxes.
My question is, is there any way I can get all check boxes at once? (I don’t wanna use arrays)
For example, my check boxes are in a LinearLayout, so can I get all the check boxes as the child of LinearLayout?
If the parent LinearLayout contains only the checkboxes, you can do this:
if you have more views in the LinearLayout you could add a check like this: