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