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?
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