其他分享
首页 > 其他分享> > android-如何在没有调用Listener.onAnimationEnd的情况下停止ValueAnimator

android-如何在没有调用Listener.onAnimationEnd的情况下停止ValueAnimator

作者:互联网

我将一个AnimatorListenerAdapter添加到ValueAnimator中,但是我需要在ValueAnimator某个时间运行时停止它.

我尝试了ValueAnimator.cancel()或ValueAnimator.stop(),它们都可以停止动画制作,但是AnimatorListenerAdapter.onAnimationEnd()调用了我不想要的.

ValueAnimator.pause()可以工作,但是它仅在api 19之上,所以我不能使用它;

无论如何我还能做到吗?

解决方法:

使用cancel()或stop()以及某个位置的布尔字段.布尔值用作告知onAnimationEnd()是否应执行其常规工作的标志.默认将boolean设置为true;如果要阻止正常的动画结束处理,请将其翻转为false.

标签:android-animation,objectanimator,android
来源: https://codeday.me/bug/20191027/1944623.html