'ProgressDialog when load the video from firebase storage

I want to show ProgressDialog if the video finishes loading from firebase.

Post_video post_video = (Post_video) itemList.get(i);

videoViewHolder.load_vide.setVisibility(View.VISIBLE); // my progress

  final MediaController mediacontroller = new MediaController(mContext);
  mProgressBar=videoViewHolder.load_vide;
  mVideoView.setVideoURI(Uri.parse(post_video.getpostvideo()));


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source