Run animation sequentially for infinite time
How do I define a set of animations without using the <set>
tag? I read somewhere on this forum that the set tag has开发者_开发技巧 a buggy implementation and will not run with repeatCount="infinite"
.
You could override onAnimationStart
and onAnimationEnd
, if you you extend View
, to trigger starting the new animation when the old animation has finished.
精彩评论