在连接函数调用后,GoogleApiClient正在抛出“GoogleApiClient尚未连接”

问题描述 投票:72回答:8

所以我找到了关于GoogleApiClient的一些不太清楚的东西。 GoogleApiClient有一个名为onConnected的函数,它在客户端连接时运行(肯定)

我得到了自己的函数:startLocationListening,最终在GoogleApiClient的onConnected函数上调用。

所以我的startLocationListening函数无法在没有GoogleApiClient连接的情况下运行。

代码和日志:

@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

在此之后我得到了例外。

我在这里错过了什么吗?我得到了“连接”的响应我运行了我的功能,我得到错误“没有连接”这是什么?另外一件烦人的事情是:我现在使用这个位置服务已经好几周了,从来没有出现过这个错误。

E D I T:

我添加了一个更具体的日志输出,只是让我大吃一惊,看看这个:

@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()怎么可能?

E D I T:

由于没有人能够以声誉赏金回答这个问题,我决定将此报告为谷歌的一个错误。接下来的事情让我很惊讶。 Google对我的报告的正式回答:

“这个网站是针对开发人员问题的AOSP Android源代码和开发人员工具集,而不是Google应用程序或服务,如Play服务,GMS或Google API。不幸的是,似乎没有合适的地方来报告Play服务的错误我只能说这个网站不是,对不起。请尝试在Google产品论坛上发帖。“

完整问题report here.(我希望他们不会因为它的愚蠢而删除它)

所以,是的,我看了一下谷歌产品论坛,发现这个东西找不到任何主题,所以此刻我感到困惑和困惑。

地球上的任何人都可以帮助我吗?

E D I T:

pastebin中的完整代码

android google-play-services google-api-client android-googleapiclient
8个回答
85
投票

我刚刚注意到你在onStartCommand()中创建了googleApiClient。这似乎是一个坏主意。

假设您的服务被触发两次。将创建两个googleApiClient对象,但您只能引用一个。如果您没有的引用执行其回调到onConnected(),您将在该客户端连接,但您实际拥有的引用的客户端仍然可以是未连接的。

我怀疑这是怎么回事。尝试将googleApiClient创建移动到onCreate,看看是否有相同的行为。


2
投票

我有同样的错误,但我的问题与iheanyl的答案不同:

我已经宣布googleApiClient是静态的。这阻止了android关闭服务。


0
投票

https://developer.android.com/reference/com/google/android/gms/common/api/GoogleApiClient.html

您应该在Activity的onCreate(Bundle)方法中实例化一个客户端对象,然后在onStart()中调用connect(),在onStop()中调用disconnect(),而不管状态如何。

GoogleApiClient的实现似乎仅针对单个实例设计。最好在onCreate中仅实例化一次,然后使用单个实例执行连接和断开连接。


0
投票

在onStart()方法中调用connect()方法

 @Override
       protected void onStart() {
           super.onStart();

           // Call GoogleApiClient connection when starting the Activity
           googleApiClient.connect();
       }

       @Override
       protected void onStop() {
           super.onStop();

           // Disconnect GoogleApiClient when stopping Activity
           googleApiClient.disconnect();
       }

0
投票

我想我找到了问题的根源,它与API无关。每次安装应用程序时都会遇到此问题。顺便说一句,就像最流行的评论一样,我暂停和恢复时只有一个googleApiClient。我注意到,弹出了获取地理位置访问权限的权限请求。正如您在活动中所知,这将暂停,一旦弹出窗口消失,它将恢复您的活动。很可能你的googleClient也被链接到那些断开连接的事件。一旦接受权限并且即将执行googleApiClient任务,您就可以确定没有连接。

 if(googleApiClient.isConnected()){

        rxPermissions
                .request(Manifest.permission.ACCESS_FINE_LOCATION)
                .subscribe(granted -> {

                 if (granted) {
                        //here it could be client is already disconnected!!     
                        _geolocateAddress(response);
                    } else {
                        // Oups permission denied
                    }
                });
    }

您可以跳过断开连接和连接,因为您在权限之前设置了一个标志,并且googleApiClient任务完成后或granted为false。

if(googleApiClient.isConnected()){
        isRequestingPermission = true;
        rxPermissions
                .request(Manifest.permission.ACCESS_FINE_LOCATION)
                .subscribe(granted -> {
                    if (granted && googleApiClient.isConnected()) {
                        //Once the task succeeds or fails set flag to false
                        //at _geolocateAddress
                        _geolocateAddress(response);
                    } else {
                        // Oups permission denied
                        isRequestingPermission = false;
                    }
                });
    }

我们也可以单独分割执行权限,如果被授予,则进行任务调用。好吧,我要承认我正在使用一个片段,我重新安装了应用程序,甚至在权限上旋转屏幕,一旦授予,结果就显示出来了。我希望这有助于其他人。

  • 您不必卸载该应用程序。只需转到设置/应用程序管理器/您的应用程序/权限,然后关闭,然后再次测试应用程序。

0
投票

我有这个问题,我通过将googleApiClient声明为静态对象来解决它


-1
投票

我偶然发现了这个问题,但在oncreate和onresume中有googleApiClient.connect()。刚从oncreate中删除它。


-4
投票

将googleApi创建移动到onCreate为我解决了这个问题。

© www.soinside.com 2019 - 2024. All rights reserved.