I want to bring the android default launcher on back button press, but I'm getting a dialog box style launcher. Also, I cannot call finish() because this is not my first activity and some of the previous activities are also not finished. Here is my code :
@Override
public void onBackPressed() {
Intent intent = new Intent();
intent.setAction(Intent.ACTION_MAIN);
intent.addCategory(Intent.CATEGORY_LAUNCHER);
startActivity(intent);
}