I have a object animator started, and I want to change the end value sometimes when the animation is started, but without stopping and restarting it.
How can this be achieved? I can't find any info on the web.
SAMPLE:
XMovement = ObjectAnimator.ofFloat(view, "x", startX, endX);
XMovement.setDuration(ANIMATION_TIME);
XMovement.start();
and I want to change endX
value in real time when the animation is started.