如何检查应用程序内的 GPS 支持,以便为启用了定位服务的用户添加功能?
如何检查应用程序内的 GPS 支持,以便为启用了定位服务的用户添加功能?
我担心的是,我知道我必须在清单中指定标签来声明该应用程序使用位置服务,但我仍然希望该应用程序能够为那些不使用位置服务的人运行。我只是想检查一下,如果该服务可用,就使用它;否则就忽略该功能。
谢谢。
How can I check for GPS support in-App to add a feature for those with Location services enabled?
My concern is, I know I'd have to specify the tag in the manifest to declare that the app uses location services, but I still want the app to function for those without. I just want to check and, if the service is available, use it; otherwise just ignore that one feature.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以通过查看是否启用了任何位置提供程序来检查是否启用了任何位置服务。我现在在我的代码中使用这个函数:
另一个巧妙的事情是您可以将用户直接发送到位置设置并询问他们是否想要启用它。我将把如何询问用户的问题留给你,但访问设置的意图是这样的:
You can check if any Location services are enabled by looking to see if any location providers are enabled. I'm using this function in my code right now:
Another neat thing is that you can send the user straight to the Location settings and ask them if they want to enable it. I'll leave it to you on how to ask the user, but the Intent to get to the settings is like this: