Android MediaController 下一个上一个按钮
因此,对于 Android 的 MediaController,我发现“在调用 setPrevNextListeners() 之前,“上一个”和“下一个”按钮是隐藏的。”我想展示下一个和上一个。有人可以帮助我了解如何设置吗?
谢谢
So, For Android's MediaController I found this "The "previous" and "next" buttons are hidden until setPrevNextListeners() has been called." I'd like to show the next and previous. Can someone help me understand how to set this up?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
假设您在 Activity 中使用 VideoView 控件(我们称之为 videoView),您将需要向其附加一个 MediaController。尝试以下操作:
这应该可以解决问题。
Assuming you are using a VideoView control withing an activity, (let's call it videoView), you will want to attach a MediaController to it. Try the following:
This should do the trick.