Home
last modified time | relevance | path

Searched refs:mBackgroundColorAnimator (Results 1 – 1 of 1) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/
DActivatableNotificationView.java126 private ValueAnimator mBackgroundColorAnimator; field in ActivatableNotificationView
546 if (mBackgroundColorAnimator != null) { in updateBackgroundTint()
547 mBackgroundColorAnimator.cancel(); in updateBackgroundTint()
558 mBackgroundColorAnimator = ValueAnimator.ofFloat(0.0f, 1.0f); in updateBackgroundTint()
559 mBackgroundColorAnimator.addUpdateListener(new ValueAnimator.AnimatorUpdateListener() { in updateBackgroundTint()
567 mBackgroundColorAnimator.setDuration(StackStateAnimator.ANIMATION_DURATION_STANDARD); in updateBackgroundTint()
568 mBackgroundColorAnimator.setInterpolator(Interpolators.LINEAR); in updateBackgroundTint()
569 mBackgroundColorAnimator.addListener(new AnimatorListenerAdapter() { in updateBackgroundTint()
572 mBackgroundColorAnimator = null; in updateBackgroundTint()
575 mBackgroundColorAnimator.start(); in updateBackgroundTint()