VladMorzhanov
9/23/2017 - 2:38 PM

Android call new activity and clear all other activities.

Android call new activity and clear all other activities.

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