我正在Android中实施SQLite
数据库。我在这一点上坚持如何在该数据库中存储RadioButton的值。我正在使用RadioGroup
。请帮助我,我是Android开发的初学者。
答案 0 :(得分:1)
假设你有myRadioGroup
作为RadioGroup,
现在首先你需要像这里一样获得所选RadioButton的id
int id = myRadioGroup.getCheckedRadioButtonId();
然后必须通过你喜欢的id找到RadioButton
mySelectedRadioButton = (RadioButton) findViewById(id);
然后获取它的文本并保存到sqlite
String mySelectedText = mySelectedRadioButton.getText().toString();
//Save the value to database