include method to find application standby state

This commit is contained in:
Domingos Lopes 2016-04-26 01:10:54 -04:00
parent b1f62b56cd
commit 94af4763d2
1 changed files with 6 additions and 0 deletions

View File

@ -386,6 +386,11 @@ public class CastManager extends BaseCastManager implements OnFailedListener {
return remoteMediaPlayer.getApproximateStreamPosition();
}
public int getApplicationStandbyState() throws IllegalStateException {
Log.d(TAG, "getApplicationStandbyState()");
return Cast.CastApi.getStandbyState(mApiClient);
}
private void onApplicationDisconnected(int errorCode) {
Log.d(TAG, "onApplicationDisconnected() reached with error code: " + errorCode);
mApplicationErrorCode = errorCode;
@ -1448,6 +1453,7 @@ public class CastManager extends BaseCastManager implements OnFailedListener {
mediaStatus = remoteMediaPlayer.getMediaStatus();
if (mediaStatus == null) {
Log.d(TAG, "MediaStatus is null, so will not proceed");
return;
} else {
List<MediaQueueItem> queueItems = mediaStatus.getQueueItems();
if (queueItems != null) {