Tengo un cuadro de diálogo simple con un VideoView
y quiero reproducir el video en un bucle.Android: Vista de video: cómo reproducir un video en un bucle
Actualmente estoy usando una solución rápida
//Video Loop
vv.setOnCompletionListener(new MediaPlayer.OnCompletionListener() {
public void onCompletion(MediaPlayer mp) {
vv.start();
}
});
pero me gustaría saber si hay una manera mejor?
Editar
estoy añadiendo más código, porque no sé cómo puedo conseguir el acceso al objeto MediaPlayer forman el VideoView
:
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();
estoy actualmente buscando en usar directamente MediaPlayer
y SurfaceView
BU Me gustaría saber si hay una manera con VideoView
directamente
Por favor, intente esto, es trabajo para mí claramente [http://stackoverflow.com/a/27606389/3414469][1] – ylmzekrm1223