Android视频播放器自定义控制面板
在我的应用程序中,我有一个视频播放器。有一个自定义控制面板。我已经使用 MediaController 类实现了播放、暂停、停止功能。现在我想在该控制面板中添加一个进度条。我怎样才能实现呢?谁能给我任何示例代码或想法?
In my app, I have a video player. There is a custom control panel for that. I have implemented play, pause, stop functionality using the MediaController class. Now I want to add a progress bar in that control panel. How can I implement that? Can anyone give me any sample code or idea for the same?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用SeekBar。
然后找到媒体的总长度,并将其设置为最大值。
在媒体播放时定期更新此 SeekBar(例如每 5 秒),具体取决于媒体长度。 (如果媒体文件较短,则间隔必须较短)。
Use a SeekBar.
Then find the total length of your media, and set that as the max value.
Update this SeekBar on a regular interval as the media plays along - for example every 5th second - depending on the media length. (Interval would have to be shorter if the media file is short).