There is such an animation:
ObjectAnimator progress = new ObjectAnimator().ofFloat(progressBar,"progress",0,mTotalCount); progress.setInterpolator(new DecelerateInterpolator(0.7f)); When writing an animation in .xml - there is such a parameter as offset , which I understand as I could make the animation delay. I'm interested in how you can make a similar delay using ObjectAnimator