Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
AnimatorSetを使用してアニメーションをチェーンする方法を知っています。アニメーションを再生1->アニメーション2を再生
しかし、ViewPropertyAnimatorでこれを実現する方法がわかりませんか?「withEndAction」を使用する必要がありますか、それとも「setListener..onAnimationEnd」などを使用する必要がありますか?
ありがとう。BR、ヘンリー
withEndAction()動作するはずですが、API レベル 16 以降でのみ使用できます。
withEndAction()
NineOldAndroids バックポート経由を含め、古いバージョンで動作するものが必要な場合は、 と を使用setListener()しonAnimationEnd()ます。AnimatorListenerAdapterは のすべてのメソッドを実装しているため、必要なメソッドのみを拡張してオーバーライドAnimatorListenerできることに注意してください。AnimatorListenerAdapter
setListener()
onAnimationEnd()
AnimatorListenerAdapter
AnimatorListener