Android - MediaPlayer 中的缓冲
我正在使用 MediaPlayer 在我的应用程序中播放视频。视频需要一段时间缓冲,并且视频视图在这段时间内为空白。
有没有办法在用户处于上一屏幕时启动缓冲,以便当他来到视频播放屏幕时,视频已准备好播放?
谢谢 克里斯
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
MediaPlayer 允许您注册一个 OnPreparedListener 和一个 OnBufferingUpdateListener。
MediaPlayer lets you register an OnPreparedListener and an OnBufferingUpdateListener.
我没有尝试过,但您可以尝试在用户位于上一个屏幕时调用 MediaPlayer.prepareAsync() ,然后在用户移动到右侧屏幕时调用 .start() 。不确定在此过程中媒体播放器可以位于何处...您可能需要在一个活动中完成这一切,当用户想要观看视频时,您会动态更新该活动。
I've not tried it, but you could try calling MediaPlayer.prepareAsync() while the user is on the previous screen, then call .start() when the user moves to the right screen. Not sure where the media player can live during this process... You might need to do this all within one activity that you dynamically update when the user wants to see the video.
如下所示:
});
like below:
});