我正在使用 Google Play LocationClient。如文档中所述,我已在 onCreate() 中对其进行了初始化:
mLocationClient = new LocationClient(this, this, this);
我正在 onStart() 中进行连接
mLocationClient.connect();
它在我的 Android 手机上运行良好,但在开发者控制台中我看到 NullPointerException 正在发生connect()
。这怎么可能发生?