控制使用 D-PAD 拖动时 ExoPlayer 时间条的移动量

问题描述 投票:0回答:1

我正在尝试自定义当 ExoPlayer 的 exo_progress 时间栏聚焦并且按下 D-PAD 左右按钮在内容中及时向后/向前移动时,时间跳跃多少。默认情况下它会跳 6 分钟,这有点多了。

这可能吗?

exoplayer android-progressbar android-tv d-pad
1个回答
2
投票

使用 TimeBar 的 setKeyTimeIncrement 属性解决了这个问题。

var timeBar = playerView!!.findViewById(R.id.exo_progress)
timeBar.setKeyTimeIncrement(30000) //desired increment time in milliseconds
© www.soinside.com 2019 - 2024. All rights reserved.