我在使用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
}
}
});