我有下面的代码,以视频作为一个原始资源,启动视频和循环它,但我需要视频无缝循环现在当它来到一个剪辑结束,并重新启动剪辑之间的过渡导致一个闪烁的瞬间,这是我真的不能为我的应用程序。
public class Example extends Activity {
VideoView vv;
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
vv = (VideoView)findViewById(R.id.VideoView01);
//Video Loop
vv.setOnCompletionListener(new MediaPlayer.OnCompletionListener() {
public void onCompletion(MediaPlayer mp) {
vv.start(); //need to make transition seamless.
}
});
Uri uri = Uri.parse("android.resource://com.example/"
+ R.raw.video);
vv.setVideoURI(uri);
vv.requestFocus();
vv.start();
}
}
该剪辑只有22秒长,但被创建为无缝,所以它是可能的工作没有延迟。