Android LocationServices.FusedLocationApi.getLastLocation返回" null"

时间:2015-06-30 06:54:05

标签: android fusedlocationproviderapi

我已经在其他线程中阅读过这个问题的解决方案,但我似乎不明白为什么它会返回null。我使用了Google开发者网站提供的相同代码段:https://developer.android.com/training/location/retrieve-current.html

我在我的活动中使用以下代码来获取用户的当前位置:

public class MainActivity extends Activity implements ConnectionCallbacks, OnConnectionFailedListener {
protected GoogleApiClient mGoogleApiClient;
protected Location mLastLocation;
@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    buildGoogleApiClient();
}
@Override
protected void onStart() {
    super.onStart();
    mGoogleApiClient.connect();
}
protected synchronized void buildGoogleApiClient() {
    mGoogleApiClient = new GoogleApiClient.Builder(this)
    .addConnectionCallbacks(this)
    .addOnConnectionFailedListener(this)
    .addApi(LocationServices.API)
    .build();
}
@Override
public void onConnected(Bundle connectionHint) {
    mLastLocation = LocationServices.FusedLocationApi.getLastLocation(
            mGoogleApiClient);
    if (mLastLocation != null) {
        mLatitudeText.setText(String.valueOf(mLastLocation.getLatitude()));
        mLongitudeText.setText(String.valueOf(mLastLocation.getLongitude()));
    }
}

}

如果" mLastLocation"始终为null,我们如何编写代码以获取用户的当前位置?

3 个答案:

答案 0 :(得分:1)

文档说明(位于文章底部):

  

在位置不可用的情况下,返回的位置对象可能为空。

当设备禁用位置服务或设备处于飞行模式时,可能会发生这种情况。当长时间没有请求位置时,似乎也会发生这种情况。

答案 1 :(得分:1)

您可能需要检查所用设备的位置设置。我有同样的问题。我的位置设置设置为仅使用gps,我将其切换到高精度,使用wifi,gps和移动服务来确定您的位置。这解决了我的问题。希望它有所帮助

答案 2 :(得分:0)

阅读此解决方案:

    private static GoogleApiClient mGoogleApiClient;
    Location currentLocation = LocationServices.FusedLocationApi
            .getLastLocation(mGoogleApiClient);