您好,登錄后才能下訂單哦!
在安卓中四大組件之一ContentProvider進程就不一致,于是我就改自己這邊邏輯,也取和改數據通過我的大家一定不陌生,我最近在優化自己的模塊時發生一個BUG,我是提供Provider數據的app,但是其他來取我數據的app和我保存的值不一樣。
后來發現因為我是用SharedPreferences+ContentProvider的方式存儲數據提供給各個APP的,原來我的主程序代碼和Provider在一個進程下,但調我Provider的APP太多了,導致我的程序即使退出在后臺也占用內存不會殺死,于是把Provider獨立了另一個進程,于是主進程就能釋放內存了。但是引起了以上問題。
經過查了很多文章,推敲應該是由于SharedPreferences在多線程下的確會取得數據不一致,看到一個大佬的回答有所啟發。我以前取數據都是直接從自己目錄下SharedPreferences里拿的,那進程就是我主程序的進程,和提供其他APP數據的Provider進程就不一致,于是我就改自己這邊邏輯,也取和改數據通過我的Provider來操作,終于解決了這個問題。
public static UserInfoBean getLoginedUserInfo () {
UserInfoBean userInfo = null;
ContentResolver cr = UcApp.sCtx.getContentResolver();
Cursor cursor = cr.query(Const.URI.USER_INFO,
null, null, null, null);
if ( null == cursor ) {
LogUtils.w("getLoginedUserInfo cursor == null");
return userInfo;
}
Bundle bundle = cursor.getExtras();
boolean isLogined = bundle.getBoolean(Const.SpUser.Key.IS_LOGINED, false);
if ( ! isLogined ) {
LogUtils.w("getLoginedUserInfo isLogined = false");
return userInfo;
}
userInfo = new UserInfoBean();
userInfo.isLogined = true;
userInfo.username = bundle.getString(Const.SpUser.Key.USERNAME, "");
userInfo.token = bundle.getString(Const.SpUser.Key.TOKEN, "");
cursor.close();
LogUtils.w(userInfo.toString());
return userInfo;
}
public static void saveLoginedUserInfo (UserInfoBean userInfo, boolean isSaveToken) {
if ( null == userInfo ) {
return;
}
ContentResolver cr = UcApp.sCtx.getContentResolver();
ContentValues values = new ContentValues();
values.put(Const.SpUser.Key.IS_LOGINED, true);
values.put(Const.SpUser.Key.USERNAME, userInfo.username);
values.put(Const.SpUser.Key.TOKEN, userInfo.token);
userInfo.usernameEncode = ComUtils.URLEncoder(userInfo.username);
values.put(Const.SpUser.Key.USERNAME_ENCODE, userInfo.usernameEncode);
cr.update(Const.URI.USER_INFO, values, null, null);
}
@Override
public Cursor query (Uri uri, String[] projection, String selection, String[] selectionArgs,
String sortOrder) {
Cursor cursor = new MatrixCursor(new String[]{});
Bundle bundle = new Bundle();
UserInfoBean userInfo = getLoginedUserInfo();
if ( null != userInfo ) {
bundle.putBoolean(Const.SpUser.Key.IS_LOGINED, true);
bundle.putString(Const.SpUser.Key.USERNAME, userInfo.username);
bundle.putString(Const.SpUser.Key.TOKEN, userInfo.token);
} else {
bundle.putBoolean(Const.SpUser.Key.IS_LOGINED, false);
}
}
LogUtils.w(bundle.toString());
return cursor;
}
@Override
public int update (Uri uri, ContentValues values, String selection,
String[] selectionArgs) {
if ( null == values ) {
return 0;
}
LogUtils.w(values.toString());
SpUtils spUtils = new SpUtils(Const.SpUser.NAME);
Set<String> keys = values.keySet();
for ( String key : keys ) {
Object obj = values.get(key);
if ( null != obj ) {
spUtils.add(key, obj);
}
}
spUtils.apply();
notifyChangeUserInfo();
return 1;
}
private UserInfoBean getLoginedUserInfo () {
UserInfoBean userInfo = null;
SpUtils spUtils = new SpUtils(Const.SpUser.NAME);
boolean isLogined = (boolean) spUtils.get(Const.SpUser.Key.IS_LOGINED, false);
if ( ! isLogined ) {
LogUtils.w("isLogined = false");
return userInfo;
}
userInfo = new UserInfoBean();
userInfo.isLogined = true;
userInfo.username = (String) spUtils.get(Const.SpUser.Key.USERNAME, "");
userInfo.token = (String) spUtils.get(Const.SpUser.Key.TOKEN, "");
return userInfo;
}
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。