仅从GPS获取位置更新,而不是从网络获取

时间:2017-03-27 17:40:40

标签: android android-location android-gps

我需要准确的位置更新。当使用来自GooglePlayServices的FusedLocationServices时,即使我设置了HighAccuracy,当GPS不可用时,它也会从Wi-Fi和蜂窝网络获取位置。如何仅通过GPS请求位置,并且当GPS不可用时没有更新?

1 个答案:

答案 0 :(得分:0)

使用LocationManager.requestLocationUpdates(LocationManager.GPS_PROVIDER, ...)

这完全取消了对GooglePlayServices.Location的需求。