8

我只需要获取用户位置。最好是确切的位置,但如果不可能,粗略的位置就可以了。

根据文档:

LocationClient.getLastLocation()

Returns the best most recent location currently available.

LocationManager.getLastKnownLocation(字符串)

Returns a Location indicating the data from the last known location fix obtained from the given provider.

如果我的理解是正确的,前者会给我一个很好的结果(有时是 null),而后者会给我一个很少为 null 的结果。

这是我的代码(简化)

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;
    }
}

它似乎有效,但我的问题是:

  1. 我的理解getLastLocationgetLastKnownLocation正确吗?
  2. 这是一个好方法吗?
  3. 我可以在同一个活动中同时使用这两种方法吗?

谢谢

4

1 回答 1

7

LocationClient.getLastLocation()null在无法确定位置修复时返回。getLastLocation()不比getLastKnownLocation()而且通常要好得多。getLastKnownLocation()我认为不值得像您那样“退回” 。

使用两者都不会遇到麻烦,但这有点矫枉过正。

当然,您必须记住这LocationClientGoogle Play Services的一部分,因此它仅适用于平台包括 Google Play Store 的设备。某些设备可能使用的是非标准版本的 Android,您将无法访问LocationClient.

Google Play 服务的文档对此进行了更详细的讨论。

于 2013-06-25T20:32:51.847 回答