PhoneStateListener onCellLocationChanged 不会在后台调用

发布于 2024-11-19 09:54:07 字数 161 浏览 2 评论 0原文

我已经实现了一个在后台运行的粘性服务。我希望我的应用程序能够处理 gsm-Cell-changes。但我的 PhoneStateListener 没有被可靠地调用。有时,在我按下按钮并且手机从睡眠模式恢复后,它就会被呼叫。 我如何才能强制手机在后台服务中可靠地识别 gsm-位置更改?为什么有时有效有时无效?

I've implemented a sticky-service which runs in the background. I want my app to handle gsm-Cell-changes. But my PhoneStateListener does not get called reliably. Sometimes it just gets called after i pressed a button and the phone resumes from sleep mode.
How am i able to force the phone to recognize gsm-Locationchanges reliably in a background service? Why does it sometimes work and other times not?

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

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

发布评论

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

评论(1

那支青花 2024-11-26 09:54:07

PhoneStateListener放入服务中,然后将监听请求放入onStartCommand中。如果服务停止侦听更改,请尝试创建一个 Timer 来调用包含侦听请求的服务内的 TimerTask 类,并使 Timer< /code> 每 X 毫秒调用 TimerTask 类。这对我有用。

Put PhoneStateListener in the service and then put the requests for listening in the onStartCommand. If the service stops listening for the changes, try to create a Timer that calls for a TimerTask class inside the service which contains the listening requests and make the Timer call for the TimerTask class every X milliseconds. That worked for me.

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