共享Pref在一些高端设备(如三星)中返回错误的值

时间:2017-02-21 07:09:18

标签: android android-sharedpreferences

下面是我创建共享pref的代码

public SaveData(Context con) {
    this.context = con;
    emailSharedPreferences = context.getSharedPreferences(KEY_PREF_EMAIL, Context.MODE_PRIVATE);
    emailEdit = emailSharedPreferences.edit();
}

用于设定数据

public void setData(boolean accepted) {
    emailEdit = emailSharedPreferences.edit();
    emailEdit.putBoolean(KEY, accepted);
    emailEdit.apply();
}

获取数据

public Boolean getData() {
    emailSharedPreferences = context.getSharedPreferences(KEY_PREF_EMAIL, Context.MODE_PRIVATE);
    return emailSharedPreferences.getBoolean(KEY, false);
}

在我的应用程序启动器屏幕上,当我尝试获取数据时,它在某些设备中返回“true”。

现在,如果我通过以下代码

创建了共享pref
 private static SharedPreferences getPreferences(Context context) {
   // return context.getSharedPreferences(PREF_NAME, MODE);
    return  PreferenceManager.getDefaultSharedPreferences(context);

}

private static SharedPreferences.Editor getEditor(Context context) {
    return getPreferences(context).edit();
}

对于设定数据

public static void setData(Context context,boolean value){
    try {
        getEditor(context).putBoolean(KEY, value).commit();
    } catch (Exception e) {
        e.printStackTrace();
    }
}

获取数据

 public static boolean getData(Context context){
    try {
        return getPreferences(context).getBoolean(KEY, false);
    } catch (Exception e) {
        e.printStackTrace();
        return false;
    }
}

现在它在所有设备上运行良好。 有人可以解释为什么会发生这种情况。

1 个答案:

答案 0 :(得分:0)

使用此

emailEdit.commit();

之后

emailEdit.putBoolean(KEY,accepted);