You may need
Intent intent = new Intent(getApplicationContext(), MainActivity.class);
intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TASK|Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(intent);
FLAG_ACTIVITY_CLEAR_TASK
Any existing task that will be associated with the current activity, which will be cleared before the desired activity is launched. Simply old activities are finished.
FLAG_ACTIVITY_NEW_TASK
, become the start of a new task .
Intent Flags