标签:style http color os io java ar for art
最近在做的项目中,有一个播放列表界面,类似于优酷的播放界面,上面是播放器,下面是播放列表;在做这个页面时,遇见了一个头痛的问题:如果当前视频正在播放,点击播放列表时,不能加载该item项的视频,需要再次点击该item,才能切换视频播放,也就是说,我的应用和优酷的最大区别在于:我要双击才能播放视频列表中的视频。这个问题一直困扰我了两周,今天在log日志中突然发现了E/MediaPlayerService(180): setVideoSurfaceTexture failed: -22这个错误,于是上网搜索一番,终于解决问题。解决问题的方法如下:
we can avoid this problem by the following way... mediaPlayer.setDisplay(null); mediaPlayer.reset(); after this set the surfaceholder again before start the mediaplayer mediaPlayer.setDisplay(surfaceHolder1); mediaPlayer.start(); in onprepared notification.
这是老外的原话,其实仔细观察优酷app切换播放网络视频时的确像是这样做的:先暂停当前视频,让mediaplayer与先前的surfaceHolder脱离“绑定”,当mediaplayer再次准备好要start时,再次让mediaplayer与surfaceHolder“绑定”在一起,显示下一个要播放的视频。
注:MediaPlayer.setDisplay()的作用:设置SurfaceHolder用于显示的视频部分媒体。
Mediaplayer setVideoSurfaceTexture failed: -22问题的解决。
标签:style http color os io java ar for art
原文地址:http://blog.csdn.net/laoziyueguo3/article/details/38980401