我只需要获取用户位置。最好是准确的位置,但如果不可能的话,粗略的位置就可以了。
根据文件:
LocationClient.getLastLocation()
Returns the best most recent location currently available.
和
LocationManager.getLastKnownLocation(String)
Returns a Location indicating the data from the last known location fix obtained from the given provider.
如果我的理解是正确的,那么前者会给我一个非常好的结果(或者有时为空),而后者会给我一个很少会为空的结果。
这是我的代码(简化)
locationManager = (LocationManager) getSystemService(Context.LOCATION_SERVICE);
locationClient = new LocationClient(this, this, this);
@Override
public void onConnected(Bundle dataBundle) {
setUserLocation();
}
private void setUserLocation() {
myLocation = locationClient.getLastLocation();
if (myLocation == null) {
myLocation = locationManager.getLastKnownLocation(locationManager.getBestProvider(new Criteria(), false));
if (myLocation == null) {
//I give up, just set the map somewhere and warn the user.
myLocation = new Location("");
myLocation.setLatitude(-22.624152);
myLocation.setLongitude(-44.385624);
Toast.makeText(this, R.string.location_not_found, Toast.LENGTH_LONG).show();
}
} else {
isMyLocationOK = true;
}
}
它似乎有效,但我的问题是:
getLastLocation
和getLastKnownLocation
的理解是否正确? 由于
答案 0 :(得分:7)
LocationClient.getLastLocation()
仅返回null
。 getLastLocation()
与<{1}}相比不是更糟,通常要好得多。我不认为像你一样“退回”getLastKnownLocation()
。
使用两者都不会遇到麻烦,但这太过分了。
当然,您必须记住getLastKnownLocation()
是 Google Play服务的一部分,因此它仅适用于平台包含Google Play商店的设备。某些设备可能使用的是非标准版Android,您无法访问LocationClient
。
Google Play服务的文档更详细地讨论了这一点。