重绘 MediaController 控件
他们是旋转设备时重绘 MediaController 控件的方法吗?我已经重写了 onConfigurationChanged() 方法。我只是不知道重绘控件的方法。
我想要这样做的原因是当我旋转时,控件不会调整大小到屏幕宽度,直到它们消失并返回(再次点击视频)。
Is their a way to redraw the MediaController controls when rotating the device? I am already overriding the onConfigurationChanged() method. I just don't know of the method to redraw the controls.
The reason for me wanting to do this is when I rotate, the controls dont resize to the screen width until they disappear and come back (tap the video again).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我会尝试的(诚然,我没有使用 MediaController 的经验)是这样的:
您可能只能调用 mController.show() 并重新绘制它。
What I would try (having no experience with MediaController, admittedly) is something like this:
You might just be able to call
mController.show()
and it redraw it.