When animating a percent change for a PercentRelativeLayout the setDuration is ignored causing the animation to execute immediately. Even when added to a AnimatorSet with a duration the animation still executes immediately.
val detailAnim = ViewPropertyObjectAnimator.animate(detail)
.widthPercent(100F)
.setDuration(3000).start()
When animating a percent change for a
PercentRelativeLayout
the setDuration is ignored causing the animation to execute immediately. Even when added to a AnimatorSet with a duration the animation still executes immediately.