Canvas 动态更改位图的 z 索引

发布于 2024-12-02 03:26:44 字数 193 浏览 0 评论 0原文

我正在创建一个 Android 应用程序,在我的应用程序中,我有一个画布,我通过 canvas.drawBitmap () 函数将大量位图绘制到画布上。根据我的理解,这些位图上的 z-index 是根据它们绘制到画布的顺序设置的。我想要弄清楚的是,在绘制这些位图之后,我是否可以动态更改位图上的 z 索引以将其推到顶部?这似乎是一个非常简单的问题,但我还没有找到解决方案。

I am creating an Android app and in my app I have a canvas which I draw numerous bitmaps to the canvas via the canvas.drawBitmap () function. From my understanding the z-index on these bitmaps are set based on the order in which they are being drawn to the canvas. What I am trying to figure out is after drawing these bitmaps if I can dynamically change the z-index on a bitmap to push it to the top? This seems like a very simple problem, but I have had not luck in finding a solution yet.

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

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

发布评论

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

评论(1

窝囊感情。 2024-12-09 03:26:44

不太可能:调用drawBitmap后,位图的内容将渲染到画布上,但画布不存储对原始位图的任何引用,它只存储将位图内容应用到的结果画布。无法动态地说您在 50 个位图中绘制了第一个位图,我希望您将其设为第 50 个位图,并自动重绘其他每个位图以反映更改

因此,您需要提前订购绘图操作。

Not really possible: after you call drawBitmap the contents of the bitmap are rendered onto the canvas, but the canvas does not store any references to the original bitmap, it only stores the results of applying the bitmap's contents to the canvas. There is no way to dynamically say that bitmap you drew 1st out of 50, I want you to make that the 50th bitmap and automatically redraw every single other bitmap to reflect the change.

So you'll need to order your drawing operations before hand.

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