Possible Duplicate:
Home button listener
I use below code to listener home button pressed:
@Override
public boolean onKeyDown(int keyCode, KeyEvent event) {
System.out.println(keyCode);
if(keyCode == KeyEvent.KEYCODE_HOME) {
//do things
return true;
}
return super.onKeyDown(keyCode, event);
}
Why it no response? I try to show the keyCode. While I press other button, it show keycode. Only press home button, it does show. How can I modify it?