我可以在gps关闭且互联网正常工作时获取位置吗?

时间:2017-09-12 13:03:01

标签: android networking gps location

我的问题是关闭gps时在Android设备中获取位置。

1 个答案:

答案 0 :(得分:0)

当然可以,您只需将您的位置请求设置为PRIORITY_LOW_POWER https://developers.google.com/android/reference/com/google/android/gms/location/LocationRequest.html#PRIORITY_LOW_POWER或PRIORITY_BALANCED_POWER_ACCURACY https://developers.google.com/android/reference/com/google/android/gms/location/LocationRequest.html#PRIORITY_BALANCED_POWER_ACCURACY

  

请求的优先级强烈暗示要使用位置源的LocationClient。例如,PRIORITY_HIGH_ACCURACY更可能使用GPS,PRIORITY_BALANCED_POWER_ACCURACY更可能使用WIFI&单元塔定位,但它还取决于许多其他因素(例如可用的源),并且取决于实现。