连接android画布

发布于 2024-11-01 18:08:52 字数 176 浏览 0 评论 0 原文

我正在寻找一个使用多个位图(类似于网格图案)构建画布的示例。

我是否需要创建一个将所有其他位图放在顶部的单个位图,或者我可以将每个位图“放入”画布中(类似于连接字符串)?

注意:我还将在此构建的画布上放置其他图像(可能是其他位图),这会导致任何其他问题,还是我可以将这些图像直接添加到顶部?

I am looking for an example for constructing a canvas with multiple bitmaps(kind of in a grid pattern).

would I need to create a single bitmap that holds all of the other bitmaps on top or can I just place each bitmap "into" the canvas (similar to concatenating a string)?

note: that I will also be placing additional images ontop of this constructed canvas (probably other bitmaps) would this cause any additional issues, or can I just add those right on-top?

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

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

发布评论

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

评论(1

下雨或天晴 2024-11-08 18:08:52

您可以使用 onDraw(Canvas canvas) 方法来使用 drawBitmap(...) 方法集合来绘制所需的网格。 “http://developer.android.com/reference/android/graphics/Canvas.html”rel="nofollow">Canvas 类。

编辑:这样你就必须处理 z 顺序和所有定位

You can possibly have an View with the onDraw(Canvas canvas) method drawing the grid you want using the drawBitmap(...) collection of methods of the Canvas class.

EDIT: This way you have to deal with z-order and all the positioning of course

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