无法再启动接收器应用程序

时间:2014-07-18 17:31:34

标签: android chromecast google-cast

我在使用chromecast和启动接收器时遇到了一些问题。之前工作正常,现在每次都无法连接。

我之前通过删除所有正在运行的谷歌播放服务然后重新启动我的设备解决了这个问题,但我想知道为什么会发生这种情况。谁能帮助我更好地理解这一点?

我连接到设备的代码根本没有改变,但它刚刚停止工作。似乎它可能是某种泄露的资源。 。 。

我尝试在GoogleApiClient.ConnectionCallbacks()的onConnected方法中启动此代码

  // Launch the Receiver Application
    Cast.CastApi.launchApplication(mGoogleApiClient, mStrGoogleCastReceiverId, false)
                .setResultCallback(new ResultCallback<Cast.ApplicationConnectionResult>() 
                {
                 @Override
                public void onResult(Cast.ApplicationConnectionResult result) 
                    {
                    // Get the Status of the connection
                    Status status = result.getStatus();

                       if(status.isSuccess()){
                        // i am not longer hitting this code because device fails to have successful status
                       }
                    }
               });

0 个答案:

没有答案