性別 (男性と女性) の 2 つのラジオ ボタンを作成しました。選択したラジオ ボタンの値を MySQL に保存します。PHPを使用してAndroidをMySQLに接続しています。MySQL では、Gender is tinyint のデータ型を取得しました。PHP スクリプトでは、挿入クエリを記述しました。そのためにはどうすればいいですか?
質問する
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 に答える