// I declared myPrefs globally in the lass
SharedPreferences myPrefs = null;
// this is called in my do draw function
public void doDraw() {
}
myPrefs = this.getSharedPreferences("myPrefs", Context.MODE_WORLD_READABLE);
SharedPreferences.Editor editor = myPrefs.edit();
editor.putInt("MYHIGHSCORE", score);
editor.commit();
每当我拨打SharedPreferences.Editor editor = myPrefs.edit();
时,我的程序都会崩溃。我做错了什么?我正在尝试为高分系统存储一个int。对于像我这样的迷你高分系统,SharedPreferences
被提出了很多建议。
答案 0 :(得分:1)
编辑:
package com.example.logindemo;
import android.app.Activity;
import android.content.Intent;
import android.content.SharedPreferences;
import android.os.Bundle;
import android.view.Menu;
import android.view.View;
import android.widget.EditText;
public class LoginPage extends Activity {
EditText name = null, pwd = null;
SharedPreferences login_pref = null;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_login_page);
name = (EditText) findViewById(R.id.name_edt);
pwd = (EditText) findViewById(R.id.pwd_edt);
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
getMenuInflater().inflate(R.menu.activity_login_page, menu);
return true;
}
public void loginMethod(View v) {
login_pref = this.getSharedPreferences("login_pref",
MODE_WORLD_READABLE);
SharedPreferences.Editor login_pref_editor = login_pref.edit();
login_pref_editor.putString("Name", name.getText().toString());
login_pref_editor.commit();
startActivity(new Intent(this, WelcomeScreen.class));
}
}
试试这个。我认为你的共享pref对象没有正确获取。 注意:编辑帖子以添加全班的代码。
答案 1 :(得分:1)
如果您只想拥有一个偏好文件,请尝试使用此代码检索SharedPreference
。
myPrefs = PreferenceManager.getDefaultSharedPreferences(this);
答案 2 :(得分:0)
我想问题不在edit()
,而是在你apply()
你的更改时。查看解决方案here