How to Hide Video view's Seekbar or Progressbar in android

前端 未结 4 1476
走了就别回头了
走了就别回头了 2021-01-19 00:50

i am doing live streaming and play video in video view. i want to hide default progress bar of video view . so i kindly request for my problem if anybody ha

4条回答
  •  时光说笑
    2021-01-19 01:29

    Below is the code which adds the seek bar when using videoview So if you have used the code below please comment it and then check whether you still have a seekbar while viewing the video

     MediaController mediaController=new MediaController(this);
     mediaController.setAnchorView(videoView);
     videoView.setMediaController(mediaController)
    

    Cheers!!!

提交回复
热议问题