こんにちは、私は.xml形式のチェックボックスの値を保存したいと思います。 私は私のメインのxml上で、このためにSharedPreferencesを使用しますが、私はメッセージを取得すると、私はコンパイルすることはできません。チェックボックスの値を保存する
Cannot invoke isChecked() on the primitive type int
は、誰かが私を助けてくださいことはできますか? コードはどのように表示されるべきですか?
編集コード:
@Override
public void onPause() {
super.onPause();
final CheckBox checkBox = (CheckBox) findViewById(R.id.nieuwbel);
save(checkBox.isChecked());
}
private CheckBox checkBox = null;
@Override
public void onResume() {
super.onResume();
checkBox = (CheckBox) findViewById(R.id.nieuwbel);
checkBox.setChecked(load()); <----- still exception line 464
}
private void save(final boolean isChecked) {
SharedPreferences sharedPreferences = getPreferences(Context.MODE_PRIVATE);
SharedPreferences.Editor editor = sharedPreferences.edit();
editor.putBoolean("check", isChecked);
editor.commit();
}
private boolean load() {
SharedPreferences sharedPreferences = getPreferences(Context.MODE_PRIVATE);
return sharedPreferences.getBoolean("check", false);
}
例外コードLogcat:
10-29 23:35:31.556: E/AndroidRuntime(3292): FATAL EXCEPTION: main
10-29 23:35:31.556: E/AndroidRuntime(3292): java.lang.RuntimeException: Unable to resume activity {com.sencide/com.sencide.AndroidLogin}: java.lang.NullPointerException
10-29 23:35:31.556: E/AndroidRuntime(3292): at android.app.ActivityThread.performResumeActivity(ActivityThread.java:2241)
10-29 23:35:31.556: E/AndroidRuntime(3292): at android.app.ActivityThread.handleResumeActivity(ActivityThread.java:2256)
10-29 23:35:31.556: E/AndroidRuntime(3292): at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:1789)
10-29 23:35:31.556: E/AndroidRuntime(3292): at android.app.ActivityThread.access$1500(ActivityThread.java:123)
10-29 23:35:31.556: E/AndroidRuntime(3292): at android.app.ActivityThread$H.handleMessage(ActivityThread.java:939)
10-29 23:35:31.556: E/AndroidRuntime(3292): at android.os.Handler.dispatchMessage(Handler.java:99)
10-29 23:35:31.556: E/AndroidRuntime(3292): at android.os.Looper.loop(Looper.java:130)
10-29 23:35:31.556: E/AndroidRuntime(3292): at android.app.ActivityThread.main(ActivityThread.java:3835)
10-29 23:35:31.556: E/AndroidRuntime(3292): at java.lang.reflect.Method.invokeNative(Native Method)
10-29 23:35:31.556: E/AndroidRuntime(3292): at java.lang.reflect.Method.invoke(Method.java:507)
10-29 23:35:31.556: E/AndroidRuntime(3292): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:847)
10-29 23:35:31.556: E/AndroidRuntime(3292): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:605)
10-29 23:35:31.556: E/AndroidRuntime(3292): at dalvik.system.NativeStart.main(Native Method)
10-29 23:35:31.556: E/AndroidRuntime(3292): Caused by: java.lang.NullPointerException
10-29 23:35:31.556: E/AndroidRuntime(3292): at com.sencide.AndroidLogin.onResume(AndroidLogin.java:463)
10-29 23:35:31.556: E/AndroidRuntime(3292): at android.app.Instrumentation.callActivityOnResume(Instrumentation.java:1150)
10-29 23:35:31.556: E/AndroidRuntime(3292): at android.app.Activity.performResume(Activity.java:3832)
10-29 23:35:31.556: E/AndroidRuntime(3292): at android.app.ActivityThread.performResumeActivity(ActivityThread.java:2231)
10-29 23:35:31.556: E/AndroidRuntime(3292): ... 12 more
編集2:ほとんど他のユーザーと一緒に問題を解決しますが、私はアプリを起動し、何もせずに、それを閉じて(ショーメニューなど)私はonPauseのこの行に不快感を得るでしょう:
putBoolean(PREF_BOOL, nieuwbel.isChecked());
コードがそうですはるか:
public static final String PREFS_NAME = "SharedPrefsDemoPreferences";
public static final String PREF_BOOL = "PrefBool";
private SharedPreferences mPrefs;
private CheckBox nieuwbel;
public boolean myBoxState = false;
..
mPrefs = getSharedPreferences(PREFS_NAME, 0);
nieuwbel = (CheckBox)findViewById(R.id.nieuwbel);
は、メニューからレイアウトXMLを呼び出す:
@Override
public boolean onOptionsItemSelected(MenuItem item) {
// Handle item selection
switch (item.getItemId()) {
case R.id.menu_beltegoed: // Laat Beltegoed.xml zien en checkboxen worden geinitialiseerd
MyBeltegoed dialog = new MyBeltegoed (this, new OnReadyListenerBeltegoed());
dialog.setTitle("Optie beltegoed/toon:");
dialog.show();
nieuwbel = (CheckBox)dialog.findViewById(R.id.nieuwbel);
nieuwbel.setChecked(myBoxState);
nieuwbel.setOnCheckedChangeListener(new OnCheckedChangeListener(){
@Override
public void onCheckedChanged(CompoundButton buttonView,
boolean isChecked) {
myBoxState = nieuwbel.isChecked();
}});
return true;
case R.id.menu_sluit:
//showHelp();
return true;
default:
return super.onOptionsItemSelected(item);
}
}
onResumeとのOnSave:
@Override
protected void onResume() {
mPrefs = getSharedPreferences(PREFS_NAME, 0);
if(mPrefs!=null)
myBoxState=mPrefs.getBoolean(PREF_BOOL, false);
super.onResume();
}
@Override
protected void onPause() {
Editor e = mPrefs.edit();
e.putBoolean(PREF_BOOL, nieuwbel.isChecked()); //<-- NullPointer when i start and close the app, without doing some handlings.
e.commit();
Toast.makeText(this, "Settings Saved.", Toast.LENGTH_SHORT).show();
super.onPause();
}
編集3:あなたがアクセスすることはできません
@Override
protected void onPause() {
MyBeltegoed dialog = new MyBeltegoed (this, new OnReadyListenerBeltegoed());
nieuwbel = (CheckBox)dialog.findViewById(R.id.nieuwbel);
Editor e = mPrefs.edit();
e.putBoolean(PREF_BOOL, nieuwbel.isChecked()); <-- nullpointer
e.commit();
Toast.makeText(this, "Settings Saved.", Toast.LENGTH_SHORT).show();
super.onPause();
}
私は、チェックボックスには2つの宣言がありますさまよい、そのうちの一つが最終です!なぜOnPauseで再度チェックボックスを宣言する必要がありますか? –
こんにちはWalid、 レイアウトxmlファイルをチェックボックスで表示しましたが、なぜそれが機能しないのか説明がありますか? – Lars
NullPointerExceptionsは、例外を特定するのが最も簡単です。何かがnullであることを意味します(宣言されていてもインスタンス化されていない可能性があります)。ヌルである可能性は非常に高いです。最初のAndroidチュートリアル(http://developer.android.com/resources/tutorials/notepad/index.html)の一部をお読みください。 – Jack