我的一些用户感到非常奇怪的崩溃。我正在使用Google Play服务和位置服务。错误是:

Not connected. Call connect() and wait for onConnected() to be called.

它说的引起崩溃的代码中的相关函数是:
  @Override
  public void onConnected(Bundle bundle) {

      if (debug) {
          Toast.makeText(this, DateFormat.getDateTimeInstance().format(new Date()) + ": Connected.", Toast.LENGTH_SHORT).show();
      }

      // Request location updates using static settings
      setUpLocationClientIfNeeded();
      mLocationClient.requestLocationUpdates(mLocationRequest, this);<---- Crash here

  }

奇怪的是,我无法在自己的测试中复制此崩溃,因此无法弄清楚为什么会发生这种情况。

最佳答案

mLocationClient.connect()放在requestLocationUpdates方法之前。为我工作。

07-24 09:17