ご存知のように、ミニ コントローラーが開いているときにクリックすると、シークバーを含むポップアップが開きます。Cast Companion Library を使用しましたが、他の機能は問題なく動作します。
CastConfiguration options = new CastConfiguration.Builder(applicationId)
.enableAutoReconnect()
.enableCaptionManagement()
.enableDebug()
.enableLockScreen()
.enableNotification()
.enableWifiReconnection()
.setCastControllerImmersive(true)
.setLaunchOptions(false, Locale.getDefault())
.setNextPrevVisibilityPolicy(CastConfiguration.NEXT_PREV_VISIBILITY_POLICY_DISABLED)
.addNotificationAction(CastConfiguration.NOTIFICATION_ACTION_REWIND, false)
.addNotificationAction(CastConfiguration.NOTIFICATION_ACTION_PLAY_PAUSE, true)
.addNotificationAction(CastConfiguration.NOTIFICATION_ACTION_DISCONNECT, true)
.setForwardStep(10)
.build();
VideoCastManager.initialize(this, options);
このシークバーのポップアップを有効にする方法はありますか?
コードをデバッグしました。VideoCastControllerActivity が開かれていません。皆さんからの助けを得るために、より多くのデバッグ結果を提供できます。