如何使用android studio将单选按钮的值保存到mysql数据库?

时间:2016-11-18 15:09:59

标签: android mysql

我正在尝试创建一个投票应用程序,其中有不同的帖子,其中有两个帖子,每个帖子有两个符号。我想当我选择一个人记录到数据库时。 [与参赛者一起发布的部分帖子] 这是xml代码的一部分:

table_pat_rel2 = df.groupby(['ID','Sample']) \
                   .size() \
                   .reset_index(level=1) \
                   .rename(columns={0:'Recurrence'}) \
                   .set_index('Recurrence', append=True)

print (table_pat_rel2)
               Sample
ID  Recurrence       
AAA 1            AE01
BBB 1            AE01
    1            AE05
CTC 4            AE05
SAP 1            AE03
SAS 1            AE03
TCS 1            AE03

1 个答案:

答案 0 :(得分:0)

您是否考虑过使用OnClickListener?

RadioButton radioButton;
radioButton = (radioButton)findViewById(R.id.radioButton4);
string choice = (String)radioButton.getText();

然后为你的数据库处理程序尝试做这样的事情

contentValues.put(table_name, choice);

因为你没有共享任何java代码,所以我可以帮忙。

我建议实现一个结构和一个SQLiteDatabaseHelper。