Is there a simple way to repeat a Android AnimatorSet (infinite)? Can I set a AnimationListener and restart the AnimatorSet by calling
AnimatorSet
AnimationListener
How about this?
@Override public void onAnimationEnd(Animator animation) { if (!mCanceled) { animation.reset(); //<- added. animation.start(); } }