I have a RadioGroup rg1 and I want to get the value of the selected radio button.
rg1
I know that I can get the id of the selected radio button
id
rb1=(RadioButton)findViewById(rg1.getCheckedRadioButtonId());
Now you can use rb1.getText() to get the text on the Radiobutton that is checked
rb1.getText()