Is there a simple way to repeat a Android AnimatorSet (infinite)? Can I set a AnimationListener and restart the AnimatorSet by calling
AnimatorSet
AnimationListener
Set Infinite repeat count and restart / reverse repeat mode to all child animations
animatorSet.childAnimations.forEach { val animator = it as ObjectAnimator animator.repeatCount = ObjectAnimator.INFINITE animator.repeatMode = ObjectAnimator.RESTART / REVERSE }