本文介紹了共享首選項不應用更改的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!
問題描述
我有一個活動(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()
與Commit()不同,Commit()將其首選項寫出為Persistent
存儲同步時,Apply()將其更改提交到內存中
立即共享首選項,但開始異步提交
磁盤,您將不會收到任何故障通知。如果另一個編輯打開
此SharedPreferences執行常規Commit(),而Apply()為
仍未完成,則Commit()將暫停,直到所有異步提交
已完成以及提交本身。
https://developer.android.com/reference/android/content/SharedPreferences.Editor.html#apply()
這篇關于共享首選項不應用更改的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,