ユーザーが最初にログイン資格情報を入力したら、 を使用SharedPreferences
して値をisLogged
に設定します1
。
次回ユーザーがアプリを開いたときに、この変数の値が「1」の場合はこの変数をチェックしてから、ホーム アクティビティを開きます。
SharedPreferences sharedPref = getSharedPreferences("data",MODE_PRIVATE);
int number = sharedPref.getInt("isLogged", 0);
if(number == 0) {
//Open the login activity and set this so that next it value is 1 then this conditin will be false.
SharedPreferences.Editor prefEditor = sharedPref.edit();
prefEditor.putInt("isLogged",1);
prefEditor.commit();
} else {
//Open this Home activity
}