0
3つのページ、ログイン、スプラッシュ、MainActivityがあるので、ユーザーがログインしていない場合は、スプラッシュの後にログインページを上げる必要があります。 Realm Databaseフィールドがいっぱいになっていて、それがある場合、ユーザーが既にログに記録されていることを意味しますが、そうでない場合、ログインページが表示され、正常に動作しますが、彼がAppに復帰したときにどのようにこれを処理するか、Configurationsのデータを消去しますか?それはOnPause
にありますか?ユーザーがデータを消去するのを避ける他の方法はありますか?androidを使用してlaucherを処理する方法
@Override
protected void onPause() {
String token_result = new Realmbase().RetrieveToken(CurrentActivity.this);
if(token_result.equals("NODATA")){
Intent i = new Intent(getApplicationContext(),Login.class);
startActivity(i);
finish();
}
else {
//Continue in the same Activity
}
super.onPause();
}