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.java99 private ValueAnimator mBackgroundColorAnimator; field in ActivatableNotificationView
288 if (mBackgroundColorAnimator != null) { in updateBackgroundTint()
289 mBackgroundColorAnimator.cancel(); in updateBackgroundTint()
299 mBackgroundColorAnimator = ValueAnimator.ofFloat(0.0f, 1.0f); in updateBackgroundTint()
300 mBackgroundColorAnimator.addUpdateListener(animation -> { in updateBackgroundTint()
305 mBackgroundColorAnimator.setDuration(StackStateAnimator.ANIMATION_DURATION_STANDARD); in updateBackgroundTint()
306 mBackgroundColorAnimator.setInterpolator(Interpolators.LINEAR); in updateBackgroundTint()
307 mBackgroundColorAnimator.addListener(new AnimatorListenerAdapter() { in updateBackgroundTint()
310 mBackgroundColorAnimator = null; in updateBackgroundTint()
313 mBackgroundColorAnimator.start(); in updateBackgroundTint()