当前台(顶部)活动(应用程序)发生变化时如何收到通知

发布于 2024-09-26 11:04:36 字数 152 浏览 5 评论 0原文

我想为 Android 平台编写一个服务,当当前前台活动发生变化时会收到通知。 基本上,只有当顶级活动发生变化时,服务才应该执行一些任务。 有什么方法可以订阅并在发生此类事件时收到通知吗? 或者没有可能性,服务应该不时轮询正在运行的活动列表并检查什么是前台活动?这不是更好的解决方案...

I want to write a service for Android platform that is notified when the current foreground activity changes.
Basically the service should do some tasks only when the top activity changes.
Is there any way to subscribe and to be notified when this kind of event occurs ?
Or there is no possibility and the service should poll from time to time the list of running activities and to check what is the foreground activity ?Not preferable solution...

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

真心难拥有 2024-10-03 11:04:36

据我所知有两种方法可以做到这一点。

  1. 启动一个服务并监视 Activity Stack,您可以在此处查看它
  2. 使用辅助服务,您可以找到解决方案此处

AFAIK there are two ways to do that.

  1. Start a service and monitor the Activity Stack, you might check it here
  2. Use an Accessibility Service, you could find a solution here
迷爱 2024-10-03 11:04:36

您应该将每个活动绑定到服务,然后您就会知道哪个活动正在运行。

试试这个:

List runningTaskInfos=actvityManager.getRunningTasks(1).get(i).topActivity .getPackageName();

这个方法将给出位于前台的活动包名称的信息............

You should bind every activity to the service and you will know which activity is running.

try this:

List runningTaskInfos=actvityManager.getRunningTasks(1).get(i).topActivity .getPackageName();

this method will give info of activity's package name which is in foreground..............

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文