how to show the progress bar before playing the video

后端 未结 3 1195
死守一世寂寞
死守一世寂寞 2021-02-06 07:36

i want to show the progress dialog before playing video. i tried below link example for playing video.

http://davanum.wordpress.com/2009/12/04/android-%E2%80%93-videomus

3条回答
  •  攒了一身酷
    2021-02-06 07:59

    First, declare the progress dialog

    private static ProgressDialog progressDialog;
    

    Then, in onCreate, before calling runOnUiThread, start the dialog

    progressDialog = ProgressDialog.show(this, "", "Loading...", true);
    

    In playVideo, set a OnPreparedListener that will dismiss the dialog when the video is ready to play

    mVideoView.setOnPreparedListener(new OnPreparedListener() {
    
        public void onPrepared(MediaPlayer arg0) {
            progressDialog.dismiss();
            mVideoView.start();
        }
    });
    

提交回复
热议问题