I want to launch home when user is in some other app from my code.
i tried this post but this does not work in 4.0.3 facing same problem as reported here
Intent intent= new Intent(Intent.ACTION_MAIN);
intent.addCategory(Intent.CATEGORY_HOME);
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(intent);
it is working when home launched from my app but its not working while user is in some other app.