進行登錄:如果應用程序是登錄及其背景,然後點擊應用啓動器圖標從主屏幕上會顯示登錄屏幕
SharedPreferences sharedPref2 = getSharedPreferences("", Context.MODE_PRIVATE);
String userid = sharedPref2.getString(SharedPref.USER_ID, user_id);
if (userid != null) {
Intent i = new Intent(LoginActivity.this, HomeActivity.class);
startActivity(i);
return;
}
如果應用程序是從後臺打開,然後它會顯示HomeActivity正常, 但當應用程序在後臺,並從啓動器圖標打開它,然後只顯示登錄屏幕。
登錄後是否保存了用戶名? –
請用一些清晰的想法編輯您的問題 –
@VivekMishra yes用戶標識已保存。 – Mayuri