In Android I have some activities, let\'s say A, B, C.
In A, I use this code to open B:
Intent intent = new Intent(this, B.class); startActivity(inte
for me adding Intent.FLAG_ACTIVITY_CLEAR_TASK solved the problem
Intent.FLAG_ACTIVITY_CLEAR_TASK
Intent i = new Intent(SettingsActivity.this, StartPage.class); i.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP | Intent.FLAG_ACTIVITY_CLEAR_TASK | Intent.FLAG_ACTIVITY_NEW_TASK); startActivity(i); finish();