MediaPlayer“准备();”问题
当我使用准备()时;在我的媒体播放器上,会弹出一个黑色布局,直到媒体播放器准备好为止。我想更改该黑屏布局,这可能吗?
When I use prepare(); on my mediaplayer, a black layout pops up till the mediaplayer is prepared.. I want to change that black screens layout, is that possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
prepare();
是一个阻塞操作,如果您不想阻塞 UI 线程,请使用prepareAsync();
。或者在另一个线程中使用prepare
prepare();
is a blocking operation, if you dont want to block your UI Thread useprepareAsync();
.Or use prepare in another Thread
在后台线程中执行所有这些操作,直到媒体播放器实例准备好要播放的资源并显示进度条,直到那时
更新
了解媒体播放器何时准备
Do all these thing in background thread until media player instance prepared the resource to play and show progress bar upto that time
Update
To know when media player will prepare