禁用 Android VideoView 对象中的用户控件
我正在开发一个播放视频的应用程序。我找不到禁用用户视频控件的方法(播放、暂停、转到 1:23 等...)
如何从该对象中删除用户控件?理想情况下,底部的控件栏甚至不会显示。
I'm working on an app that plays a video. I cannot find a way to disable the user video controls (Play, pause, go to 1:23, etc...)
How do I remove the user controls from that object? Ideally the bottom bar of controls will not even show up.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
VideoView 没有内置控件,因此我假设您在代码中设置了 MediaController,其中包含点击屏幕时出现然后消失的控件。如果是这种情况,您可以将其删除,您的问题应该得到解决。
VideoView doesn't have controls built in so I'm assuming you have a MediaController set up in your code, which has the controls that appear when tapping the screen and then go away. If that's the case you can remove it and your problem should be solved.