本文介绍了共享首选项不应用更改的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有一个活动(A)检查我的服务器是否有APK更新。当调用此函数时,无论是否有更新,我都需要编辑共享首选项,以便应用程序知道跳过或运行实际的更新活动(B)。问题1是,为什么活动(A)没有编辑共享首选项?问题2是,如果正在编辑它们,为什么活动(B)没有阅读它们?提前感谢您!
应在此处编辑共享首选项(活动(A)):
private void parseJson(String result) {
try {
JSONObject obj = new JSONObject(result);
String updateMessage = obj.getString(Constants.APK_UPDATE_CONTENT);
String apkUrl = obj.getString(Constants.APK_DOWNLOAD_URL);
int apkCode = obj.getInt(Constants.APK_VERSION_CODE);
int versionCode = AppUtils.getVersionCode(mContext);
if (apkCode > versionCode) {
if (mType == Constants.TYPE_NOTIFICATION) {
showNotification(mContext, updateMessage, apkUrl);
} else if (mType == Constants.TYPE_DIALOG) {
SharedPreferences pref = mContext.getSharedPreferences("ActivityUpdatePREF", Context.MODE_PRIVATE);
SharedPreferences.Editor ed = pref.edit();
ed.putBoolean("activity_update", true);
ed.apply();
showDialog(mContext, updateMessage, apkUrl);
}
} else if (mShowProgressDialog) {
SharedPreferences pref = mContext.getSharedPreferences("ActivityUpdatePREF", Context.MODE_PRIVATE);
SharedPreferences.Editor ed = pref.edit();
ed.putBoolean("activity_update", false);
ed.apply();
Toast.makeText(mContext, mContext.getString(R.string.android_auto_update_toast_no_new_update), Toast.LENGTH_SHORT).show();
}
} catch (JSONException e) {
Log.e(Constants.TAG, "parse json error");
}
}
活动(B):
SharedPreferences pref = getSharedPreferences("ActivityUpdatePREF", Context.MODE_PRIVATE);
if(pref.getBoolean("activity_update", false)){
Intent intent = new Intent(this, Main.class);
deleteCache(getApplicationContext());
startActivity(intent);
finish();
} else {
functionUp();
}
推荐答案
使用Commit()和Not Apply()
https://developer.android.com/reference/android/content/SharedPreferences.Editor.html#apply()
这篇关于共享首选项不应用更改的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!