如何处理VideoView?

时间:2013-12-17 13:16:10

标签: android android-videoview

我正在制作一个简单的演示应用,我使用VideoView播放视频。

我的查询是什么:

  • 当我触摸VideoView时。它会显示视频的状态。

Like: pause / next / previous / seek bar / etc, which mention in the Image as u notice. enter image description here

这些所有内容都附带在 translucent background 中,我想在 transparent background 中进行此操作。即使我尝试过,但我无法得到与此相关的任何内容。!

VideoView中是否有任何方法或方法可以处理此问题?请让我知道

感谢

1 个答案:

答案 0 :(得分:0)

您需要创建自己的MediaController类,然后执行:

videoView.setMediaController(yourMediaController);

查看其他帖子: how to create custom UI for android MediaController