如何从平铺图像动态创建 AnimationDrawable
在我当前正在编程的游戏中,我有一个平铺图像,其中包含 4x3 矩阵中的不同动画帧。我想创建一个由这些帧按顺序组成的 AnimationDrawable
。然而,我只知道用整个图像作为帧来制作动画。有人可以帮助我如何做到这一点吗?如果这可以用 XML 来完成,那就更好了。
谢谢!
In the game I am currently programming, I have a tiled image with different animation frames in a 4x3 matrix. I would like to create an AnimationDrawable
consisting of each of these frames in sequence. However, I am only aware of making animations with entire images being frames. Can someone help me as to how to do this? If this could be done in XML, that's even better.
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 Bitmap.createBitmap 从大位图创建剪切位图,并使用 AnimationDrawable.addFrame< /a> 将位图添加到 AnimationDrawable 中。
You can use Bitmap.createBitmap to create the clipped bitmaps from the big bitmap, and use AnimationDrawable.addFrame to add the bitmap to the AnimationDrawable.