Search code examples
javaandroidonbackpressed

onBackPressed() to Home Screen not to Login Page


I have this sign in/register page. When you log in, it will go to membership page(fragment) and now I want to go back to the home page of the phone without logging out but whenever I click back built in button it goes to the past page activities.

I tried this android:noHistory="true" but when i click sign in but i didnt sign in, just backstack. the sign in/register page not appearing anymore.


Solution

  • If you would never like to navigate back to the login activity simply use the line of code

    finish();
    

    after your call to startAcitivty(). This will close the activity and won't be available to navigate back to without restarting the app or specifically calling the activity later in your code.

    Or just Override onBackPressed() to finish.