How to disable back button in android while logging out the application?
For me just overriding onBackPressed() did not work but explicit pointing which activity it should start worked well:
onBackPressed()
@Override public void onBackPressed(){ Intent intent = new Intent(this, ActivityYouWanToGoBack.class); startActivity(intent); }