Answers for "androidstudio add radio buttons to radiogroup"

0

android studio radio group horizontal

<RadioGroup
   android:id="@+id/radioG"
   android:layout_width="wrap_content"
   android:layout_height="wrap_content" 
   android:orientation='horizontal'>
Posted by: Guest on January-04-2021
0

android iterate through radio group java

int count = radioGroup.getChildCount();
ArrayList<RadioButton> listOfRadioButtons = new ArrayList<RadioButton>();
for (int i=0;i<count;i++) {
  View o = radioGroup.getChildAt(i);
  if (o instanceof RadioButton) {
    listOfRadioButtons.add((RadioButton)o);
  }
}
Log.d(TAG,"you have "+listOfRadioButtons.size()+" radio buttons");
Posted by: Guest on October-07-2020

Browse Popular Code Answers by Language