Video doesn't loop Android VideoView

后端 未结 3 1740
春和景丽
春和景丽 2020-12-11 21:16

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

3条回答
  •  刺人心
    刺人心 (楼主)
    2020-12-11 21:49

    Try this.

    myVideoView = (VideoView) findViewById(R.id.videoView1);
    myVideoView.setVideoPath(video_path); 
    myVideoView.setMediaController(new MediaController(this));
    myVideoView.start();   
    
    myVideoView.setOnCompletionListener(new MediaPlayer.OnCompletionListener() {
    
        @Override
        public void onCompletion(MediaPlayer mp) {
    
            myVideoView.start();  
    
        }
    });
    

    By that after completion of your video start again...

提交回复
热议问题