How to detect Location Provider ? GPS or Network Provider(如何检测位置提供者?GPS 或网络提供商)
问题描述
我正在使用 Fused Location Provider 在我的应用程序.根据 Fused Location Provided 文档,它使用所有可用资源(例如 Wifi、GPS、手机信号塔等)来优化位置.
I'm using Fused Location Provider for location updates in my app. According to Fused Location Provided documentation, it uses all available resources (e.g. Wifi, GPS, Cell tower, etc..) to optimize location.
但我想知道,有没有办法在位置更新接收器中检测到当前位置更新来自 GPS 提供商或网络提供商?
But i want to know, is there any way to detect that current location update is from GPS Provider or Network provider, in Location update receiver ?
推荐答案
你可以通过location.getProvider()
从你获取的位置查看位置提供者.
You can check the location provider by location.getProvider()
from the location you are getting.
无论您使用的是融合位置 api 还是以前的 API,您都将从 locationManager.getLastKnownLocation
或 LocationServices.FusedLocationApi.getLastLocation
获取位置,并从您可以获取的位置location.getProvider
Either you are using fused location api or a previous one, you will get the location from locationManager.getLastKnownLocation
or LocationServices.FusedLocationApi.getLastLocation
and from location you can get provider by location.getProvider
这篇关于如何检测位置提供者?GPS 或网络提供商的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何检测位置提供者?GPS 或网络提供商


基础教程推荐
- Android:对话框关闭而不调用关闭 2022-01-01
- 如何在 iPhone 上显示来自 API 的 HTML 文本? 2022-01-01
- Kivy Buildozer 无法构建 apk,命令失败:./distribute.sh -m “kivy"d 2022-01-01
- 如何在 UIImageView 中异步加载图像? 2022-01-01
- UIWebView 委托方法 shouldStartLoadWithRequest:在 WKWebView 中等效? 2022-01-01
- 如何在没有IB的情况下将2个按钮添加到右侧的UINavigationbar? 2022-01-01
- 当从同一个组件调用时,两个 IBAction 触发的顺序是什么? 2022-01-01
- 在 gmail 中为 ios 应用程序检索朋友的朋友 2022-01-01
- 如何让对象对 Cocos2D 中的触摸做出反应? 2022-01-01
- android 应用程序已发布,但在 google play 中找不到 2022-01-01