Android LocationManager 及其更新
有人可以告诉我,处理没有 GPS 信号或由于某种原因无法获取修复的情况的最佳方法是什么?
问题是,我认为仅使用 LocationListener 中的 onStatusChanged 方法就足够了,但是当没有 GPS 信号时,它永远不会调用此方法。这是为什么?
谢谢
Can someone tell me, what is the best way to deal with situations when there is no GPS signal or from some reason fix cannot be acquired?
The thing is that I thought that it would be sufficient just to use onStatusChanged method from LocationListener, but when there is no GPS signal it never calls this method. Why is that?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看看我的解决方案在 Android 上获取用户当前位置的最简单、最可靠的方法是什么?。如果没有 GPS 修复,它将使用网络提供商的更新。如果根本没有更新,它将是最后已知的值。
Take a look at my solution What is the simplest and most robust way to get the user's current location on Android?. If there's no GPS fix it will use update from Network provider. If there are no updates at all it will us last known value.