共享首选项在commit()或Apply()之前覆盖每个键的最后一个值

时间:2013-10-25 10:24:43

标签: android sharedpreferences key-value

我正在尝试在两个不同的键上保存两个布尔值,但每当我在键中保存值时,它只用最后一个值覆盖键。

以下是保存值

的函数调用
AssignRegistrationFun manage =
    new AssignRegistrationFun(getApplicationContext());
manage.ChangeDataState(false,true);

下面是函数调用if if condition来检查数据状态... 在此函数调用它返回true,即使我将第一个值设置为false

if(manage.checkDataChanged("External")) 

下面是带有类详细信息的函数定义

import android.content.Context;
import android.content.SharedPreferences;
import android.content.SharedPreferences.Editor;

public class AssignRegistrationFun {
    SharedPreferences pref;
    Editor  editor;
    Context _context;
    int PRIVATE_MODE = 0;
    private static final String PREF_NAME ="Tester";
    private static final String EXTERNAL_DATA = "true";
    private static final String INTERNAL_DATA = "true";

    public AssignRegistrationFun(Context context){
        this._context = context;
        pref = _context.getSharedPreferences(PREF_NAME, PRIVATE_MODE);
        editor = pref.edit();
    }

    public void ChangeDataState(boolean EX_state,boolean IN_state){
        editor.putBoolean(EXTERNAL_DATA,EX_state);
        editor.putBoolean(INTERNAL_DATA,IN_state);
        editor.commit();//even editor.apply() not works     
    }

    public boolean checkDataChanged(String type){
        if(type.equals("External")) 
            return pref.getBoolean(EXTERNAL_DATA,false);
        else
            return pref.getBoolean(INTERNAL_DATA,false);
    }

} 

请提前帮助我...

1 个答案:

答案 0 :(得分:1)

您的EXTERNAL_DATAINTERNAL_DATA都设置为相同的字符串值:"true",因此当您分配一个时,您会覆盖另一个的值。

解决方案:使用不同的值,例如:

private static final String EXTERNAL_DATA = "external";
private static final String INTERNAL_DATA = "internal";