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?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…