android 如何在AnimatorSet playSequentially()中添加动画之间的延迟?

1u4esq0p  于 2024-01-04  发布在  Android
关注(0)|答案(3)|浏览(153)

我使用AnimatorSet playSequentially方法如下:

  1. AnimatorSet set = new AnimatorSet();
  2. ObjectAnimator in = ObjectAnimator.ofFloat(splash, "alpha", 0f, 1f);
  3. in.setDuration(2500);
  4. in.setInterpolator(new AccelerateInterpolator());
  5. ObjectAnimator out = ObjectAnimator.ofFloat(splash, "alpha", 1f, 0f);
  6. out.setDuration(2500);
  7. out.setInterpolator(new AccelerateInterpolator());
  8. set.playSequentially(in,out);

字符串
我想在动画1和2之间添加一个延迟,如下所示:

  1. set.playSequentially(in,1000,out);


可以使用playSequentially方法在动画之间添加延迟吗?

uinbv5nw

uinbv5nw1#

添加这行代码:

  1. out.setStartDelay(1000);

字符串

beq87vna

beq87vna2#

您可以在第二个Animator(即out.setStartDelay(1000))上设置开始延迟,然后再将其添加到集合中。

dluptydi

dluptydi3#

使用AnimatorSet.after(long delay)函数,而不是在各个动画上设置开始延迟。

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

字符串
AnimatorSet.Builder

相关问题