gpt4 book ai didi

android - 如何通过代码模拟点击最近的应用?

转载 作者:行者123 更新时间:2023-11-30 03:54:09 28 4
gpt4 key购买 nike

我正在设置当我的应用进入后台时的通知。

我想模拟点击通知时在“最近使用的应用程序”菜单上按下它的行为

  1. 如果应用进入后台并且仍然“活跃”,则转到上一个 Activity
  2. 如果应用程序在后台被杀死,请从头开始重新启动

是否有任何标志可以添加到仅知道哪个应用程序的“转到顶部 Activity ”的 Intent 中?

最佳答案

如这里所述:How to open last activity from notification status bar?

Intent notificationIntent = new Intent(context, MainActivity.class);
notificationIntent.addCategory(Intent.CATEGORY_LAUNCHER);
notificationIntent.setAction(Intent.ACTION_MAIN);

notificationIntent 将被传递给 pendingIntent 以供进一步使用。

提供:MainActivity 是我们启动应用程序时的第一个 Activity ,在 AndroidManifest.xml 中它必须包含 CATEGORY_LAUNCHERIntentFiltersACTION_MAIN

关于android - 如何通过代码模拟点击最近的应用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13603184/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com