Closed. This question needs to be more focused。它当前不接受答案。












想要改善这个问题吗?更新问题,使它仅关注editing this post的一个问题。

4年前关闭。



Improve this question




我想为一个View(例如Button,ImageView)设置动画,使其看起来像炸弹一样爆炸。实现此方法的最佳方法是什么?在 View 上叠加基于爆炸帧的动画 Sprite ?还是有可能以某种方式在代码中实现呢?

最佳答案

您可以使用“ExplosionField”库,它非常简单。祝你好运!

Gradle :

dependencies {
   compile 'tyrantgit:explosionfield:1.0.1'
 }

用法:
ExplosionField explosionField = ...;
explosionField.explode(view);

10-04 16:54