Android视频播放器自定义控制面板

发布于 2024-11-10 14:11:25 字数 220 浏览 0 评论 0原文

在我的应用程序中,我有一个视频播放器。有一个自定义控制面板。我已经使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

﹏雨一样淡蓝的深情 2024-11-17 14:11:25

使用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).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文