SurfaceView如何设置android只在需要调用时刷新屏幕?

发布于 2024-12-08 19:35:32 字数 156 浏览 0 评论 0原文

所以我有一个专门用于我的 SurfaceView 的线程。然而,在调试过程中我发现屏幕不断重绘。我觉得这是浪费。我正在寻找一种方法来检查是否调用了 indvalidate() 或 postInvalidate() ,因此我只需要在需要时刷新屏幕。 有谁知道我到底在寻找什么或者我可以从哪里开始寻找?

So I have a thread dedicated to the my SurfaceView. However, during debugging I found that the the screen was being constantly redrawn. I feel this is waste. I'm looking for a way to check to see if indvalidate() or postInvalidate() was called so I only need to refresh the screen when it needs it.
Does anyone know what exactly I'm looking for or where I can start looking?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

蓝咒 2024-12-15 19:35:32

在为 SurfaceView 实现 SurfaceHolder.Callback 时,您应该在 surfaceCreated()surfaceDestroyed() 中启动和停止专用渲染线程。仅当 SurfaceView 可见时,这应该足以限制绘制。

You should be starting and stopping the dedicated rendering thread in surfaceCreated() and surfaceDestroyed() when implementing SurfaceHolder.Callback for your SurfaceView. This should be enough to limit drawing only when the SurfaceView is visible.

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