This second ability is important: Users must be able to leave a task and then come back to it later using this activity launcher. For this reason, the two launch modes that  activities as always initiating a task, "singleTask" and ""singleInstance", should be used only when the activity has an ACTION_MAIN and a CATEGORY_LAUNCHER filter. Imagine, for example, what could happen if the filter is missing: An intent launches a "singleTask" activity, initiating a new task, and the user spends some time working in that task. The user then presses the Home button. The task is now sent to the background and is not visible. Now the user has no way to return to the task, because it is not represented in the application launcher. API说"singleTask" and ""singleInstance"不能设置在没有定义 ACTION_MAIN and a CATEGORY_LAUNCHER filter的activity中。
1.  我现在测试了下:Activity1有设置ACTION_MAIN and a CATEGORY_LAUNCHER,activity2设置了(singleTask),
现在用activity1 startIntent activity2后,在按下home建,然后直接点应用图标可以回到activity2界面?这和文档说明不不符合啊?
2.  但是我将activity2 设置成singleInstance后,按下home建,在按图标确实是回不到activity2,只能回到activity1,这和文档说明的相符。
请问为什么1中与文档不符合呢?
另外2,若是我回到activity1,然后在按下back建退出,那么将进程却并没有结束,那么activity2变成什么了?