android 画布连接

发布于 2024-11-01 00:52:56 字数 172 浏览 0 评论 0原文

我试图通过读取数组并使用大小写开关来构建画布来构建 SurfaceView。

所以问题是:我可以通过跟踪 X 来构建循环 Y 的画布吗?使用 BitmapFactory() 将位图加载到画布中,然后使用 1 .show() 将画布渲染到屏幕上?或者我是否需要为每一个调用画布渲染(或者每次我这样做时都会穿过屏幕)?

I am trying to construct a SurfaceView by reading in an array and using case switches to build the canvas.

so the question is: can I construct a canvas looping Y, by tracking X. loading bitmaps using BitmapFactory() into the canvas and then using 1 .show() to render the canvas to the screen? or will I need to call the canvas render for each of these (or will that through away the screen every time I do that)?

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

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

发布评论

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

评论(1

谜泪 2024-11-08 00:52:56

不确定您的意思,但有一点是避免在 onDraw 中使用 BitmapFactory。您不希望在渲染的同时进行位图解码。您应该提前加载位图并将它们保留在内存中以便以后更快地绘制。

Not sure what you're getting at, but for one thing avoid using BitmapFactory in onDraw. You don't want to be doing bitmap decoding at the same time as rendering. You should load your bitmaps ahead of time and keep them around in memory for faster drawing later on.

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