When the BACK button is pressed on the phone, I want to prevent a specific activity from returning to its previous one.
Specifically, I have login and sign up screen
@Override public void onBackPressed() { }
When you create onBackPressed() just remove super.onBackPressed();and that should work
onBackPressed()
super.onBackPressed();