Android SharedPreferences似乎不起作用

时间:2013-01-12 21:50:14

标签: java android sharedpreferences

我正在制作一款小游戏,我正在努力更新乐谱,但我无法让它正常工作。

注意:我在这里展示了我的程序片段,我已经设置了很多其他东西,但它们根本没有触及“得分”,这就是代码有点小的原因速记

我的代码:

public class Start_Test extends Activity {

TextView total_points;
long new_total;


@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_three);
    total_points = (TextView) findViewById(R.id.points);
        SharedPreferences pref = getSharedPreferences("Prefs",
                Context.MODE_PRIVATE);
        new_total = pref.getLong("total_points", 0);
        setTouchListener();
    updateTotal(0);


}

public void updateTotal(long change_in_points) {
        SharedPreferences pref = getSharedPreferences("Prefs",
                Context.MODE_PRIVATE);
        new_total = new_total + change_in_points;
        pref.edit().putLong("total_points", new_total);
        pref.edit().commit();
        total_points.setText("" + new_total);

    }

public void setTouchListeners() {

        button.setOnTouchListener(new OnTouchListener() {
            SharedPreferences pref = getSharedPreferences("Prefs",
                    Context.MODE_PRIVATE);

            @Override
            public boolean onTouch(View v, MotionEvent event) {
                updateTotal(25);
                return false;
            }

        });
}

2 个答案:

答案 0 :(得分:3)

我认为是因为您正在创建一个新的共享首选项Edit实例。 (因为你两次调用.edit()并提交一个未编辑的版本)

更改您的代码......

    SharedPreferences pref = getSharedPreferences("Prefs",
            Context.MODE_PRIVATE);
    new_total = new_total + change_in_points;
    pref.edit().putLong("total_points", new_total);
    pref.edit().commit();

以下内容:

    SharedPreferences.Editor pref = getSharedPreferences("Prefs",
            Context.MODE_PRIVATE).edit();
    new_total = new_total + change_in_points;
    pref.putLong("total_points", new_total);
    pref.commit();

答案 1 :(得分:2)

每次调用.edit()都会创建一个新的编辑器。

更改

pref.edit().putLong("total_points", new_total);
pref.edit().commit();

Editor editor = prefs.edit();
editor.putLong("total_points", new_total);
editor.commit();