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
- android 4中的android RadioButton问题 2022-01-01
- 在测试浓缩咖啡时,Android设备不会在屏幕上启动活动 2022-01-01
- 使用自定义动画时在 iOS9 上忽略 edgesForExtendedLayout 2022-01-01
- 用 Swift 实现 UITextFieldDelegate 2022-01-01
- Android viewpager检测滑动超出范围 2022-01-01
- 如何检查发送到 Android 应用程序的 Firebase 消息的传递状态? 2022-01-01
- 想使用ViewPager,无法识别android.support.*? 2022-01-01
- MalformedJsonException:在第1行第1列路径中使用JsonReader.setLenient(True)接受格式错误的JSON 2022-01-01
- Android - 拆分 Drawable 2022-01-01