私はこのようなAnimatorSet playSequentially方法使用しています:AnimatorSetのアニメーション間に遅延を追加する方法playSequentially()?
set.playSequentially(in,1000,out);
アニメーション間の遅延を追加することが可能である:私はこのように、アニメーション1と2の間の遅延を追加したいとwhould
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);
をplaySequentiallyメソッドを使用して?
ありがとうございます。