本文介绍了如何隐藏视频浏览的搜索栏或进度在android系统的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在做直播和视频观看播放视频。我想的视频查看的隐藏默认的进度条。所以我恳请我的问题,如果有人有我的问题解决好,请给我。
感谢名单提前.......

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 have good solution for my problem please send me.Thanx in advance.......

推荐答案

下面是code。使用videoview时,它增加了搜索栏
所以,如果你已经使用了code下面请评论,然后检查
是否仍然有一个搜索栏观看视频的同时

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

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

干杯!

这篇关于如何隐藏视频浏览的搜索栏或进度在android系统的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-28 17:46