In my application, I have a login screen, after successful login, a tab will load with 4 tab activities. I want to exit from the application when I press the back button. I have tried this. But not working:`
@Override
public boolean onKeyDown(int keyCode, KeyEvent event) {
if (keyCode == KeyEvent.KEYCODE_BACK) {
android.os.Process.killProcess(android.os.Process.myPid());
super.onKeyDown(keyCode, event);
return true;
}
return false;
}
`