ACTION_MAIN
with
categoryCATEGORY_HOME
--
Launch the home screen.
Intent intent = new Intent(Intent.ACTION_MAIN);
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
intent.addCategory(Intent.CATEGORY_HOME);
mContext.startActivity(intent);