I want to handle the navigation-bar
buttons.
I see that I can override the onKeyDown()
method in MainActivity
@Override
public boolean onKeyDown(int code, KeyEvent e) {
if(code == KeyEvent.KEYCODE_BACK){
return true;
}else{
return super.onKeyDown(code, e);
}
}
But it is not being called.