android_additive_animations
android_additive_animations copied to clipboard
Using setStartDelay after creating a staggered animation removes stagger
The stagger parameter gets overwritten by the startDelay when used in this order:
AdditiveAnimator.anime(views, 50)
.setStartDelay(300)
.yBy(100)
.start()
setStartDelay
should just add to the initial stagger, not overwrite it.