VideoView
を含むシンプルなダイアログボックスが表示されたので、ビデオをループで再生したいです。
現在、クイックフィックスを使用しています
//Video Loop
vv.setOnCompletionListener(new MediaPlayer.OnCompletionListener() {
public void onCompletion(MediaPlayer mp) {
vv.start();
}
});
しかし、より良い方法があるかどうか知りたいですか?
編集
VideoView
からMediaPlayerオブジェクトにアクセスする方法がわからないため、コードを追加しています。
String path = defaultPath+currentVideoRessource;
if (path == null || path.length() == 0) {
Log.e("extra","File URL/path is empty");
} else {
// If the path has not changed, just start the media player
if (!path.equals(current) && mVideoView != null) {
Uri pathURI = Uri.parse(defaultPath+currentVideoRessource);
mVideoView.setVideoURI(pathURI);
}
current = path;
mVideoView.setOnCompletionListener(new MyOnCompletionListener(this));
//Video Loop
// mVideoView.setOnCompletionListener(new MediaPlayer.OnCompletionListener() {
// public void onCompletion(MediaPlayer mp) {
// mVideoView.start(); //need to make transition seamless.
// }
// });
mVideoView.start();
mVideoView.requestFocus();
私は現在MediaPlayer
とSurfaceView
buを直接使用することを検討しています。VideoView
に直接方法があるかどうかを知りたい
MediaPlayerインスタンスで setLooping(true) を使用します。
-編集-
SetOnCompletionListenerの代わりに setOnPrepareListener を使用してはどうですか?これにより、MediaPlayerオブジェクトにアクセスできます。
vv.setOnPreparedListener (new OnPreparedListener() {
@Override
public void onPrepared(MediaPlayer mp) {
mp.setLooping(true);
}
});
コードの下の参照フォームを使用できます。setup_welcome_videoはビデオファイルです。
myVideo = findViewById(R.id.VideoView);
Uri uri = Uri.parse("Android.resource://" + getPackageName() + "/" + R.raw.setup_welcome_video);
myVideo.setVideoURI(uri);
myVideo.start();
myVideo.requestFocus();
myVideo.setOnPreparedListener (mp -> mp.setLooping(true));