Execute action when an animation is repeated in Android
I'm trying stuff with android animation and I would like to know if there is a way to execute some code every time an animation is repeated? I looked 开发者_StackOverflowat the google doc but didn"t find any method to do that...
Use an AnimationListener
, overriding onAnimationRepeat()
.
精彩评论