2
// 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对于像我这样的迷你高分系统提出了很多建议。

4

3 回答 3

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));
    }
}

试试这个。我认为您的共享首选项对象未正确获取。注意:编辑帖子以添加整个班级的代码。

于 2012-11-15T04:20:29.307 回答
1

如果您打算只有一个首选项文件,请尝试使用此代码来检索SharedPreference.

myPrefs = PreferenceManager.getDefaultSharedPreferences(this);
于 2012-11-15T06:26:23.390 回答
0

我想问题不在于edit()apply()的改变。在这里查看解决方案

于 2012-11-15T04:10:32.090 回答