問題
- 登録を行うアクティビティは一度だけ表示されます
- 登録後、コントロールは次のメイン アクティビティに移動する必要があります
次のコードを使用しました
以下のコードは私の要件を満たしていませんか?
どんな助けでも大歓迎です!!
登録活動のコード
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(this);
SharedPreferences.Editor editor=prefs.edit();
editor.putBoolean("registration", true);
editor.commit();
メイン アクティビティのコード
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(this);
boolean regComplete =prefs.getBoolean("registration", false);
SharedPreferences.Editor editor =prefs.edit();
editor.putBoolean("registration", false);
editor.commit();
if(regComplete)
{
startActivity(new Intent(this, SecureXActivity.class));
} else
{
startActivity(new Intent(this, LoginActivity.class));
}