私は 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);
playSequenally メソッドを使用してアニメーション間に遅延を追加することは可能ですか?
ありがとうございました。