Android 监听 GPS 状态的变化?
您好,我需要知道如何在 Android 中使用 GPS 监听以下信息,以便我可以在 PreferenceActivity
中更新 UI。我尝试过 GpsStatus.Listener
但没有任何反应。
GpsStatus.GPS_EVENT_STARTED
GpsStatus.GPS_EVENT_STOPPED
任何建议都会很好。
Hello I need to know how to listen for the following with the GPS in Android so I can update the UI in a PreferenceActivity
. I have tried GpsStatus.Listener
with nothing happening.
GpsStatus.GPS_EVENT_STARTED
GpsStatus.GPS_EVENT_STOPPED
Any suggestions would be great.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
查看了系统设置应用程序的源代码以及他们如何做到这一点并将其实现到我的应用程序中,效果很好。感谢 @SKJ 的帮助,但遗憾的是我无法让 GpsStatus.Listener 工作,源代码完美工作。
Looked at the source code for the system settings app and how they did it and implemented it into my app and it works great. @SKJ thx for the help but sadly I couldn't get the
GpsStatus.Listener
to work the source code works perfectly.