音量按钮默认情况下无法使用cast-sdk v3从android sender应用控制投射设备的音量

时间:2018-11-27 13:14:29

标签: android chromecast google-cast google-cast-sdk

我在我的android发送器应用程序中使用了Cast SDK v3,它运行良好,但是默认情况下,音量控制按钮不会控制投射设备的音量。我必须扩大音量控件弹出窗口并调整投射设备的音量。投射会话恢复时,它将直接控制设备的音量。但是一旦更改了播放状态,它就会失去焦点。

private class CastSessionManagerListener implements SessionManagerListener<CastSession> {

    @Override
    public void onSessionStarting(CastSession session) {
    }

    @Override
    public void onSessionStarted(CastSession session, String sessionId) {
        // In case we are casting, send the device name as an extra on MediaSession metadata.
        // Now we can switch to CastPlayback
        EventHelper.eventFeatureClicked(EventHelper.FEATURE_CHROME_CAST);
        Playback playback = new CastPlayback(MusicService.this);
        mMediaRouter.setMediaSessionCompat(mSession);
        mPlaybackManager.switchToPlayback(playback, true);
    }

    @Override
    public void onSessionStartFailed(CastSession session, int error) {

    }

    @Override
    public void onSessionEnding(CastSession session) {
        // This is our final chance to update the underlying stream position
        // In onSessionEnded(), the underlying CastPlayback#mRemoteMediaClient
        // is disconnected and hence we update our local value of stream position
        // to the latest position.
        mPlaybackManager.getPlayback().updateLastKnownStreamPosition();
    }

    @Override
    public void onSessionEnded(CastSession session, int error) {
        Playback playback = new LocalPlayback(MusicService.this);
        mMediaRouter.setMediaSessionCompat(null);
        mPlaybackManager.switchToPlayback(playback, true);
    }

    @Override
    public void onSessionResuming(CastSession session, String sessionId) {
    }

    @Override
    public void onSessionResumed(CastSession session, boolean wasSuspended) {
        EventHelper.eventFeatureClicked(EventHelper.FEATURE_CHROME_CAST);
        Playback playback = new CastPlayback(MusicService.this);
        mMediaRouter.setMediaSessionCompat(mSession);
        mPlaybackManager.switchToPlayback(playback, true);
    }

    @Override
    public void onSessionResumeFailed(CastSession session, int error) {
    }

    @Override
    public void onSessionSuspended(CastSession session, int reason) {
    }
}

1 个答案:

答案 0 :(得分:0)

我相信,如果您的MediaSessionMediaSessionCompat设置为有效,则会发生这种情况。投射时或在远程播放时,应使其处于非活动状态。