I am trying to build an android app that will loop a video! The problem is that it never loops! It plays the video only once! During debugging i realized that the \"myVideo
Try onPreparedListener instead of onCompletionListener:
onPreparedListener
onCompletionListener
myVideoView.setOnPreparedListener(new OnPreparedListener() { @Override public void onPrepared(MediaPlayer mp) { mp.setLooping(true); } });
Hope this helps.