How to disable back button in android while logging out the application?
Override the onBackPressed method and do nothing if you meant to handle the back button on the device.
@Override public void onBackPressed() { if (shouldAllowBack()) { super.onBackPressed(); } else { doSomething(); } }