我为性别(男性和女性)创建了 2 个单选按钮。我想将选定的单选按钮值存储在 MySQL 中。我正在使用 PHP 将 Android 连接到 MySQL。在 MySQL 中,我将 Gender 的数据类型设为 tinyint。在 PHP 脚本中,我编写了插入查询。我希望如果选择了男性,则应存储 0,选择女性,则应将 1 存储在 MySQL 中。为此我该怎么办?
问问题
2212 次
2 回答
4
例子:
让这个动作在你的按钮点击完成
所以在你的点击监听器中写下这段代码
if(radioButton1.isSeleceted())
String temp = radioButton1.getText().toString();
if(radioButton2.isSeleceted())
String temp = radioButton2.getText().toString();
然后将温度值放入您的Database
于 2012-09-06T06:56:31.850 回答
1
无需使用数据库。您可以将值保存在Shared preference
.
前任:
if(radioButton1.isSeleceted()) {
PrefarenceName.putString("gender","1");
} else if(radioButton2.isSeleceted())
PrefarenceName.putString("gender","0");
}
String gendertype = prefarenceName.getString("gender");
if(gendertype == 1) {
radioButton1.setSelcted(true);
} else {
radioButton2.setSelcted(true);
}
于 2012-09-06T07:16:07.007 回答