5

我想启动显示最近使用的应用程序的菜单。

我尝试在按下按钮时查看 logcat,希望有一些我可以启动但没有运气的意图。

我知道在某些手机上它是一个专用按钮,也可以通过长按主页按钮来实现。有什么方法可以以编程方式启动它吗?

编辑:更新标题更准确

4

3 回答 3

5

当您按下“Recent Apps”按钮时,logcat 将输出以下消息:

568-716/system_process I/ActivityManager﹕ START u0 {act=com.android.systemui.recent.action.TOGGLE_RECENTS flg=0x10800000 cmp=com.android.systemui/.recent.RecentsActivity} from pid 627
    --------- beginning of /dev/log/main
568-582/system_process I/ActivityManager﹕ Displayed com.android.systemui/.recent.RecentsActivity: +215ms

所以,我们可以通过编程来模拟这个操作。(不要忘记将标志设置为 0x10800000):

Intent intent = new Intent ("com.android.systemui.recent.action.TOGGLE_RECENTS");
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS);
intent.setComponent(new ComponentName("com.android.systemui", "com.android.systemui.recent.RecentsActivity"));
startActivity (intent);

有关更多信息RecentsActivity,请在此处阅读源代码。

于 2015-09-08T08:42:32.530 回答
3

就像@Floerm 的帖子一样,这段代码只能在 android N 下工作,android N 已经改变了 IStatusBarService api,我们不能这样访问。

private void openRecentApps() {
try {
    Class serviceManagerClass = Class.forName("android.os.ServiceManager");
    Method getService = serviceManagerClass.getMethod("getService", String.class);
    IBinder retbinder = (IBinder) getService.invoke(serviceManagerClass, "statusbar");
    Class statusBarClass = Class.forName(retbinder.getInterfaceDescriptor());
    Object statusBarObject = statusBarClass.getClasses()[0].getMethod("asInterface", IBinder.class).invoke(null, new Object[]{retbinder});
    Method clearAll = statusBarClass.getMethod("toggleRecentApps");
    clearAll.setAccessible(true);
    clearAll.invoke(statusBarObject);
} catch (Exception e) {
    e.printStackTrace();
}}

如果要在 Android N 中启动最近的应用程序,则需要使用 AccessibilityService。

accessibilityService.performGlobalAction(AccessibilityService.GLOBAL_ACTION_RECENTS);
于 2017-06-28T13:48:36.460 回答
0

不,这是不可能的(主要是因为在各种深奥的 Android 操作系统之间有多种处理方式)。但是,您可以获得正在运行的进程列表并创建自己的最近应用程序列表。(也许这个答案这个答案会对你有所帮助。)

于 2012-09-10T02:59:45.143 回答