重绘 MediaController 控件

发布于 2024-11-07 13:07:03 字数 147 浏览 0 评论 0原文

他们是旋转设备时重绘 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

为你鎻心 2024-11-14 13:07:03

我会尝试的(诚然,我没有使用 MediaController 的经验)是这样的:

MediaController mController = (MediaController)findViewById(R.id.mController);
mController.invalidate();
//next line may not be necessary
mController.show(some integer value here);

您可能只能调用 mController.show() 并重新绘制它。

What I would try (having no experience with MediaController, admittedly) is something like this:

MediaController mController = (MediaController)findViewById(R.id.mController);
mController.invalidate();
//next line may not be necessary
mController.show(some integer value here);

You might just be able to call mController.show() and it redraw it.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文