所以我发现了一些关于 GoogleApiClient 对我来说不是很清楚的东西。 GoogleApiClient有一个名为onConnected的函数,它在客户端连接时运行(当然)。
我得到了我自己的函数:startLocationListening,它最终被 GoogleApiClient 的 onConnected函数调用。
因此,如果没有 GoogleApiClient 连接,我的startLocationListening 函数将无法运行。
代码和日志:
@Override
public void onConnected(Bundle bundle) {
log("Google_Api_Client:connected.");
initLocationRequest();
startLocationListening(); //Exception caught inside this function
}
...
private void startLocationListening() {
log("Starting_location_listening:now");
//Exception caught here below:
LocationServices.FusedLocationApi.requestLocationUpdates(mGoogleApiClient, mLocationRequest, this);
}
例外是:
03-30 12:23:28.947: E/AndroidRuntime(4936): java.lang.IllegalStateException: GoogleApiClient is not connected yet.
03-30 12:23:28.947: E/AndroidRuntime(4936): at com.google.android.gms.internal.jx.a(Unknown Source)
03-30 12:23:28.947: E/AndroidRuntime(4936): at com.google.android.gms.common.api.c.b(Unknown Source)
03-30 12:23:28.947: E/AndroidRuntime(4936): at com.google.android.gms.internal.nf.requestLocationUpdates(Unknown Source)
03-30 12:23:28.947: E/AndroidRuntime(4936): at hu.company.testproject.service.GpsService.startLocationListening(GpsService.java:169)
03-30 12:23:28.947: E/AndroidRuntime(4936): at hu.company.testproject.service.GpsService.onConnected(GpsService.java:259)
...
我的调试日志还说调用了 onConnected 函数:
03-30 12:23:28.847: I/Locationing_GpsService(4936): Google_Api_Client:connected.
03-30 12:23:28.857: I/Locationing_GpsService(4936): initLocationRequest:initing_now
03-30 12:23:28.877: I/Locationing_GpsService(4936): initLocationRequest:interval_5000
03-30 12:23:28.897: I/Locationing_GpsService(4936): initLocationRequest:priority_100
03-30 12:23:28.917: I/Locationing_GpsService(4936): Starting_location_listening:now
在此之后,我得到了例外。
我在这里错过了什么吗?我得到了“已连接”的响应我运行了我的 func,但我得到了错误“未连接”这是什么?另外一件烦人的事情是:我使用这个定位服务已经有好几个星期了,从来没有出现过这个错误。
编辑 :
我添加了一个更具体的日志输出,让我大吃一惊,看看这个:
@Override
public void onConnected(Bundle bundle) {
if(mGoogleApiClient.isConnected()){
log("Google_Api_Client: It was connected on (onConnected) function, working as it should.");
}
else{
log("Google_Api_Client: It was NOT connected on (onConnected) function, It is definetly bugged.");
}
initLocationRequest();
startLocationListening();
}
在这种情况下记录输出:
03-30 16:20:00.950: I/Locationing_GpsService(16608): Google_Api_Client:connected.
03-30 16:20:00.960: I/Locationing_GpsService(16608): Google_Api_Client: It was NOT connected on (onConnected) function, It is definetly bugged.
是的,我刚mGoogleApiClient.isConnected() == false
进去onConnected()
怎么可能?
编辑:
由于即使有声誉赏金也没有人能回答这个问题,我决定将此作为一个错误报告给谷歌。接下来发生的事情让我感到非常惊讶。谷歌对我的报告的官方回答:
“这个网站是针对 AOSP Android 源代码和开发者工具集的开发者问题,而不是 Google 应用程序或服务,例如 Play 服务、GMS 或 Google API。不幸的是,似乎没有合适的地方来报告 Play 服务的错误. 我只能说这个网站不是它,对不起。试着在谷歌产品论坛上发帖。“
完整的问题报告在这里。(我希望他们不会仅仅因为它很愚蠢而将其删除)
所以是的,我看了一下谷歌产品论坛,只是找不到任何主题来发布这个东西,所以现在我很困惑和卡住了。
地球上的任何人都可以帮助我吗?
编辑:
pastebin中的完整代码