在我的應用程序中,我使用VideoView來流式傳輸視頻文件,並使用MediaPlayer.setLooping(true)製作VideoView循環視頻。VideoView不會在Galaxy S4上循環播放視頻
下面是一些代碼 -
videoView.setVideoPath(url);
videoView.setOnPreparedListener(new OnPreparedListener() {
@Override
public void onPrepared(MediaPlayer mp) {
if (shouldLoopVideo) {
mp.setLooping(true);
}
videoView.start();
}
});
此代碼是可以正常使用的所有設備,但銀河S4的Android 4.2.2我在許多設備上進行測試,並且許多Android版本,但只有那些失敗是星系s4。
設備將播放一次視頻,並停止(在調用onCompletion監聽器之後)。
看到這個鏈接http://developer.samsung.com/forum/board/thread/view.do?boardName=General&messageId=249871&listLines=15&startId=zzzzz~ –