Possible Duplicate:
overriding the Home Key Long press in a category.HOME activity
Does anyone know the name of the method triggered by a long press on the home button in the 2.3.3 android source?
Possible Duplicate:
overriding the Home Key Long press in a category.HOME activity
Does anyone know the name of the method triggered by a long press on the home button in the 2.3.3 android source?
Home Button is Reserved By Android OS. Events triggered upon the Android UI Components Only. You cannot trigger the long press event upon the Home Button. If you want to trigger event for Home button, you should Handle using key Events method.
Example :
@Override
public boolean onKeyDown(int keyCode, KeyEvent event)
{
if(keyCode == KeyEvent.KEYCODE_BACK)
{
Log.d("Test", "Back button pressed!");
}
else if(keyCode == KeyEvent.KEYCODE_HOME)
{
Log.d("Test", "Home button pressed!");
}
return super.onKeyDown(keyCode, event);
}