Is there any way of getting an array (or a collection) of the RadioButtons in an Android RadioGroup? I would like to add individual listeners to ra
RadioButton
RadioGroup
this should do the trick:
int count = radioGroup.getChildCount(); ArrayList listOfRadioButtons = new ArrayList(); for (int i=0;i