About Android Launchmode "singleTask"
Answer : You sound right. Why don't you test it. There is also this app that can help explain launch mode: https://play.google.com/store/apps/details?id=com.novoda.demos.activitylaunchmode Sources are at https://github.com/gnorsilva/Activities-LaunchMode-demo The ActivityC will be removed from task1 and ActivityB becomes the top Activity. Yes, you are Right... ActivityC will be removed from i.e. the onDestroy method of the ActivityC will be called. Hence when the user launches Task 1 again, the ActivityB is shown rather than ActivityC. Have created 2 Tasks (Projects) and uploaded the same @ SendSpace. Try it out... If you look at androids documentation it says " A "singleTask" activity allows other activities to be part of its task. It's always at the root of its task, but other activities (necessarily "standard" and "singleTop" activities) can be launched into that task." This means that when you click the hom...