Search code examples
androidandroid-intentandroid-homebutton

Simulate long press on home button


If I want to simulate press on home button I do this

Intent startMain = new Intent(Intent.ACTION_MAIN);
startMain.addCategory(Intent.CATEGORY_HOME);
startMain.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(startMain);

But how can I simulate long press?


Solution

  • You can't override the home button. Android doesn't allow it because of security reasons. But to handle de long press on a button, you can use onKeyLongPress