-1
我希望讓用戶保持登錄狀態,即使應用程序在登錄後被終止並重新打開。Android保持登錄狀態
我有 登錄java頁面, 一個點擊並註銷功能在另一個頁面。
如何使用sharedpreferences獲得我想要的結果?
據我所知,sharedpreferences只能在一個java頁面中使用。
。
。
感謝您的任何建議或樣品將很好。
我希望讓用戶保持登錄狀態,即使應用程序在登錄後被終止並重新打開。Android保持登錄狀態
我有 登錄java頁面, 一個點擊並註銷功能在另一個頁面。
如何使用sharedpreferences獲得我想要的結果?
據我所知,sharedpreferences只能在一個java頁面中使用。
。
。
感謝您的任何建議或樣品將很好。
嘗試這個 - 當u登入才點擊退出按鈕設置sharedpreference值
如editor.putBoolean("key_name1", true);
使假
如editor.putBoolean("key_name1", false);
您每次發射活動負載(您啓動app)檢查sharedpreference的值
如果值是真的用戶登錄,否則註銷
請理解http://stackoverflow.com/questions/23024831/android-shared-preferences-example – jenuine