私は7つのチェックボックス、1つのテキストフィールド、保存ボタンを備えたアプリを持っています.....ユーザーが必要に応じてチェックボックスをいくつでも選択し、テキストフィールドに入力して保存をクリックできるようにしたい.....その後、アプリを再度開くと、正しいチェックボックスがオンになり、入力したテキストがテキストボックスに表示されます....
ほとんど機能しましたが、一度に1つのチェックボックスしか保存されていないか、まったく保存されていないようで、何が間違っているのかわかりません...すべてのスレッドと投稿を読みましたが、取得できないようです右....
任意の助けをいただければ幸いです
ここに私のコードがあります
package com.rapeventplannerchecklist.app.rapeventplannerchecklist;
import android.app.Activity;
import android.content.SharedPreferences;
import android.content.SharedPreferences.Editor;
import android.os.Bundle;
import android.preference.PreferenceManager;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.CheckBox;
import android.widget.EditText;
public class MainActivity extends Activity implements OnClickListener {
CheckBox checkBox;
CheckBox checkBox2;
CheckBox checkBox3;
CheckBox checkBox4;
CheckBox checkBox5;
CheckBox checkBox6;
CheckBox checkBox7;
EditText editText;
Button button;
@Override
protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
checkBox = (CheckBox) findViewById(R.id.checkBox1);
checkBox2 = (CheckBox) findViewById(R.id.checkBox2);
checkBox3 = (CheckBox) findViewById(R.id.checkBox3);
checkBox4 = (CheckBox) findViewById(R.id.checkBox4);
checkBox5 = (CheckBox) findViewById(R.id.checkBox5);
checkBox6 = (CheckBox) findViewById(R.id.checkBox6);
checkBox7 = (CheckBox) findViewById(R.id.checkBox7);
editText = (EditText) findViewById(R.id.editText1);
button = (Button) findViewById(R.id.button1);
button.setOnClickListener(this);
loadSavedPreferences();
}
private void loadSavedPreferences() {
SharedPreferences sharedPreferences = PreferenceManager
.getDefaultSharedPreferences(this);
boolean checkBoxValue = sharedPreferences.getBoolean("CheckBox_Value", false);
String name = sharedPreferences.getString("storedName", "YourName");
if (checkBoxValue) {
checkBox.setChecked(true);
} else {
checkBox.setChecked(false);
}
boolean checkBox2Value = sharedPreferences.getBoolean("CheckBox_Value2", false);
if (checkBox2Value) {
checkBox2.setChecked(true);
} else {
checkBox2.setChecked(false);
}
boolean checkBox3Value = sharedPreferences.getBoolean("CheckBox_Value3", false);
if (checkBox3Value) {
checkBox3.setChecked(true);
} else {
checkBox3.setChecked(false);
}
boolean checkBox4Value = sharedPreferences.getBoolean("CheckBox_Value4", false);
if (checkBox4Value) {
checkBox4.setChecked(true);
} else {
checkBox4.setChecked(false);
}
boolean checkBox5Value = sharedPreferences.getBoolean("CheckBox_Value5", false);
if (checkBox5Value) {
checkBox5.setChecked(true);
} else {
checkBox5.setChecked(false);
}
boolean checkBox6Value = sharedPreferences.getBoolean("CheckBox_Value6", false);
if (checkBox6Value) {
checkBox6.setChecked(true);
} else {
checkBox6.setChecked(false);
}
boolean checkBox7Value = sharedPreferences.getBoolean("CheckBox_Value7", false);
if (checkBox7Value) {
checkBox7.setChecked(true);
} else {
checkBox7.setChecked(false);
}
editText.setText(name);
}
private void savePreferences(String key, boolean value) {
SharedPreferences sharedPreferences = PreferenceManager
.getDefaultSharedPreferences(this);
Editor editor = sharedPreferences.edit();
editor.putBoolean(key, value);
editor.commit();
}
private void savePreferences(String key, String value) {
SharedPreferences sharedPreferences = PreferenceManager
.getDefaultSharedPreferences(this);
Editor editor = sharedPreferences.edit();
editor.putString(key, value);
editor.commit();
}
@Override
public void onClick(View v) {
// TODO Auto-generated method stub
savePreferences("CheckBox_Value", checkBox.isChecked());
if (checkBox.isChecked())
savePreferences("CheckBox_Value2", checkBox2.isChecked());
if (checkBox2.isChecked())
savePreferences("CheckBox_Value3", checkBox3.isChecked());
if (checkBox3.isChecked())
savePreferences("CheckBox_Value4", checkBox4.isChecked());
if (checkBox4.isChecked())
savePreferences("CheckBox_Value5", checkBox5.isChecked());
if (checkBox5.isChecked())
savePreferences("CheckBox_Value6", checkBox6.isChecked());
if (checkBox6.isChecked())
savePreferences("CheckBox_Value7", checkBox7.isChecked());
if (checkBox7.isChecked())
savePreferences("storedName", editText.getText().toString());
finish();
}
}
どんな助けでも大歓迎です!!!