2 つのラジオ ボタンを含むラジオ グループがあります。ラジオボタンの値を取得してデータベースに保存したい..どうすればよいですか?? 助けてください!探したけど全部だめ!このコードを試しましたが、使用後にアクティビティが機能しなくなりました
rg=(RadioGroup)findViewById(R.id.radioGroup2);
if(rg.getCheckedRadioButtonId()!=-1)
{
int id=rg.getCheckedRadioButtonId();
View radioButton=rg.findViewById(id);
int radioid=rg.indexOfChild(radioButton);
RadioButton btn = (RadioButton) rg.getChildAt(radioid);
Father_spouse=(String)btn.getText();
}