Searched defs:mBackgroundColorAnimator (Results 1 - 1 of 1) sorted by last modified time

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DActivatableNotificationView.java133 private ValueAnimator mBackgroundColorAnimator; field in class:ActivatableNotificationView
521 if (mBackgroundColorAnimator != null) {
522 mBackgroundColorAnimator.cancel();
533 mBackgroundColorAnimator = ValueAnimator.ofFloat(0.0f, 1.0f);
534 mBackgroundColorAnimator.addUpdateListener(new ValueAnimator.AnimatorUpdateListener() {
542 mBackgroundColorAnimator.setDuration(StackStateAnimator.ANIMATION_DURATION_STANDARD);
543 mBackgroundColorAnimator.setInterpolator(Interpolators.LINEAR);
544 mBackgroundColorAnimator.addListener(new AnimatorListenerAdapter() {
547 mBackgroundColorAnimator = null;
550 mBackgroundColorAnimator
[all...]

Completed in 9 milliseconds