如何使用Android SDK监控GPS适配器的状态?
我需要让我的应用程序监控 GPS 适配器是否启用或禁用。我不关心手机上是否运行实际的 GPS 功能——我需要 GPS 适配器的状态。
我可以通过调用手动执行此操作:
String providers = Settings.Secure.getString(getContentResolver(),
Settings.Secure.LOCATION_PROVIDERS_ALLOWED);
如果列出了“gps”,则它处于活动状态,否则不是。但我找不到任何有关在用户启用或禁用 GPS 时收到通知的文档。我确实尝试在 LocationManager 中使用 addGpsStatusListener,但这仅在获取实际 GPS 修复时发出通知(例如,如果正在使用地图应用程序)。
有什么想法吗?
I need to have my app monitor whether the GPS adapter is anabled or disabled. I don't care about the actual GPS functionality running at the monemt or not -- I need the status of the GPS adapter.
I can manually do it by calling:
String providers = Settings.Secure.getString(getContentResolver(),
Settings.Secure.LOCATION_PROVIDERS_ALLOWED);
If "gps" is listed, then it's active, otherwise it's not. But I can't find any documentation on getting notified when GPS is enabled or disabled by the user. I did try to use addGpsStatusListener in LocationManager, but that only notifies when the actual GPS fix is being acquired (like if the Maps app is being used).
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
LocationContentObserver 没关系,我找到了答案;
LocationContentObserver Nevermind, I found the answer;