Video doesn't loop Android VideoView

后端 未结 3 1744
春和景丽
春和景丽 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:28

    Try onPreparedListener instead of onCompletionListener:

    myVideoView.setOnPreparedListener(new OnPreparedListener() {
        @Override
        public void onPrepared(MediaPlayer mp) {
            mp.setLooping(true);
        }
    });
    

    Hope this helps.

提交回复
热议问题