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/
DActivatableNotificationView.java133 private ValueAnimator mBackgroundColorAnimator; field in ActivatableNotificationView
521 if (mBackgroundColorAnimator != null) { in updateBackgroundTint()
522 mBackgroundColorAnimator.cancel(); in updateBackgroundTint()
533 mBackgroundColorAnimator = ValueAnimator.ofFloat(0.0f, 1.0f); in updateBackgroundTint()
534 mBackgroundColorAnimator.addUpdateListener(new ValueAnimator.AnimatorUpdateListener() { in updateBackgroundTint()
542 mBackgroundColorAnimator.setDuration(StackStateAnimator.ANIMATION_DURATION_STANDARD); in updateBackgroundTint()
543 mBackgroundColorAnimator.setInterpolator(Interpolators.LINEAR); in updateBackgroundTint()
544 mBackgroundColorAnimator.addListener(new AnimatorListenerAdapter() { in updateBackgroundTint()
547 mBackgroundColorAnimator = null; in updateBackgroundTint()
550 mBackgroundColorAnimator.start(); in updateBackgroundTint()