如何在android中使用public static final String SET_ACTIVITY_WATCHER权限?
我想知道当我的服务在后台运行时启动了哪些其他活动。 如果有新活动启动,那么我的服务应该知道。我怎么知道?我可以使用 SET_ACTIVITY_WATCHER 权限吗?我该如何使用它。感谢您的帮助。
I want to know what are the other activities launched when my service is running background .
If there is a new activity launched , then my service should know it . How do i know ? Can i use SET_ACTIVITY_WATCHER permission ? How can i use it . Thanks for all the help .
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
根据文档,它似乎仅适用于
调试模式。
更新
按照此THREAD 您列出的权限是一个 Android 团队在发布时
忘记清理
的系统,它就躺在那里。EIDT
我猜
轮询
(检查间隔)是你唯一的出路。检查这个线程。您可以使用 ActivityManager 查找正在运行的应用程序。as per the documentation it seems it is only for
debug
mode.UPDATE
as per this THREAD your listed permission is a system which the android team
forgot to cleanup
in the release and it is just lying there.EIDT
i guess
polling
(check in intervals) is the only way left for you. check this thread. you may be able to use the ActivityManager to find the running apps.