public Location getLastKnownLocation() {
LocationManager mLocationManager = (LocationManager) getApplicationContext().getSystemService(LOCATION_SERVICE);
List<String> providers = mLocationManager.getProviders(true);
Location bestLocation = null;
for (String provider : providers) {
Location l = mLocationManager.getLastKnownLocation(provider);
if (l == null) {
continue;
}
if (bestLocation == null
|| l.getAccuracy() < bestLocation.getAccuracy()) {
bestLocation = l;
}
}
if (bestLocation == null) {
return null;
}
return bestLocation;
}
为什么这个函数返回错误的位置?错误大概是8-9公里
答案 0 :(得分:0)
因为getLastKnownLocation没有返回当前位置。它返回通过该提供程序计算出的最后一个位置。这个位置可能只有一个小时 - 如果它有它,它仍将返回它。如果要获得准确的位置,则需要通过调用requestUpdates或requestSingleUpdate来打开位置提供程序,然后等待onLocationChanged函数至少调用一次。其他任何东西都可能是陈旧的位置。
答案 1 :(得分:0)
这是因为你正在使用getLastKnownLocation():location = locationManager.getLastKnownLocation(LocationManager.GPS_PROVIDER);
getLastKnownLocation(String Provider):返回一个Location,指示从给定提供程序获取的上次已知位置修复的数据。
这可以在不启动提供程序的情况下完成。请注意,此位置可能已过期,例如,如果设备已关闭并移至其他位置。