How to disable back button in android while logging out the application?
You can override the onBackPressed() method in your activity and remove the call to super class.
onBackPressed()
@Override public void onBackPressed() { //remove call to the super class //super.onBackPressed(); }