gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-11-29 14:36:06 28 4
gpt4 key购买 nike

我正在使用这样的 AnimatorSet playSequentially 方法:

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);

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

set.playSequentially(in,1000,out);

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

谢谢。

最佳答案

添加这行代码:

    out.setStartDelay(1000);

关于android - 如何在 AnimatorSet playSequentially() 中的动画之间添加延迟?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38952990/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com