I had the same problem. I am animating 3 ValueAnimators in an AnimatorSet. I did "playTogether ()" in my set as follows:
set.playTogether(alpha,animScale,transY);
set.start();
And found that the delay in the animation caused problems. Instead, I tried the following:
set.play(animScale);
set.play(transY);
set.play(alpha);
set.start();
Seems to work!
source
share