我正在使用 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 或网络提供商的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!