当前台(顶部)活动(应用程序)发生变化时如何收到通知
我想为 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
据我所知有两种方法可以做到这一点。
AFAIK there are two ways to do that.
您应该将每个活动绑定到服务,然后您就会知道哪个活动正在运行。
试试这个:
这个方法将给出位于前台的活动包名称的信息............
You should bind every activity to the service and you will know which activity is running.
try this:
this method will give info of activity's package name which is in foreground..............