android.animation.ValueAnimator#AnimatorPauseListener ( )源码实例Demo

下面列出了android.animation.ValueAnimator#AnimatorPauseListener ( ) 实例代码,或者点击链接到github查看源代码,也可以在右侧发表评论。

public ViewPropertyObjectAnimator addPauseListener(ValueAnimator.AnimatorPauseListener listener) {
    if (android.os.Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) {
        mPauseListeners.add(listener);
    }
    return this;
}
 
public ViewPropertyObjectAnimator removePauseListener(ValueAnimator.AnimatorPauseListener listener) {
    if (android.os.Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) {
        mPauseListeners.remove(listener);
    }
    return this;
}