How to add a delay between animations in AnimatorSet playSequentially()?

5.6k Views Asked by At

I'm using AnimatorSet playSequentially method like this:

AnimatorSet set = new AnimatorSet();
ObjectAnimator in = ObjectAnimator.ofFloat(splash, "alpha", 0f, 1f);
in.setDuration(2500);
in.setInterpolator(new AccelerateInterpolator());
ObjectAnimator out = ObjectAnimator.ofFloat(splash, "alpha", 1f, 0f);
out.setDuration(2500);
out.setInterpolator(new AccelerateInterpolator());

set.playSequentially(in,out);

I would like to add a delay between animation 1 and 2, like this:

set.playSequentially(in,1000,out);

It is possible to add delays between animations using playSequentially method?

3

There are 3 best solutions below

0
On

Add this line of code:

    out.setStartDelay(1000);
0
On

You could set a start delay on the 2nd Animator (i.e. out.setStartDelay(1000)) before adding it to the set.

0
On

Rather than setting a start delay on the individual animations, use the AnimatorSet.after(long delay) function.

AnimatorSet s = new AnimatorSet();
s.play(anim1).after(1000).after(anim2);

AnimatorSet.Builder