I am trying to use the next code to return back to the My Application Home Activity from the stack of my application:
protected void goHome(boolean offlineMode) {
final Intent intent = new Intent(this, MainActivity.class);
intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
startActivity(intent);
...
}
But in this case all other applications activities on the top will be closed too.
Is it possible to close activities only of my application in this case?
This should do the work.