Is there any possible way to get the selected radio button in this layout? because rg.getCheckedRadioButtonId() not working on this layout. I can
radio button
rg.getCheckedRadioButtonId()
You can get selected radio button by this way
int selectedId = radioGroup.getCheckedRadioButtonId(); // find the radiobutton by returned id radioButton = (RadioButton) findViewById(selectedId);
this will return you the id of selected radio button