chrome on android 如何在任务切换器中显示标签?

How does chrome on android manage to show tabs in task switcher?

简短问题:Android 上的 Google Chrome 如何(或曾经)设法在 Android OS 任务切换器中显示其选项卡(或 "running apps switcher")?

我应该怎么做(更喜欢Java)让我的应用程序(实例、活动或我需要的任何东西)出现在那里?

根据 CommonsWares 的回答,我得到了以下解决方案:

Intent i = new Intent(CurrentActivity.this, MultipleInstancesActivity.class)
i.setFlags(Intent.FLAG_ACTIVITY_NEW_DOCUMENT | Intent.FLAG_ACTIVITY_MULTIPLE_TASK | Intent.FLAG_ACTIVITY_NEW_TASK)
startActivity(i)

新文档标志让每个新任务都出现在任务切换器中。不幸的是,它仅适用于 Android 5.0 (Api 21) 和更新版本。 Android 4.

我找不到类似的方法

给 Android 4 位开发人员的提示:新任务标志有效 - 您可以只为您的应用实现自己的任务切换器。 Android 提供检查 运行 任务并在它们之间切换的方法。