Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/
DNotificationStackScrollLayout.java390 private ValueAnimator mDimAnimator; field in NotificationStackScrollLayout
395 mDimAnimator = null;
4770 if (mDimAnimator != null) {
4771 mDimAnimator.cancel();
4777 mDimAnimator = TimeAnimator.ofFloat(mDimAmount, target);
4778 mDimAnimator.setDuration(StackStateAnimator.ANIMATION_DURATION_DIMMED_ACTIVATED);
4779 mDimAnimator.setInterpolator(Interpolators.FAST_OUT_SLOW_IN);
4780 mDimAnimator.addListener(mDimEndListener);
4781 mDimAnimator.addUpdateListener(mDimUpdateListener);
4782 mDimAnimator.start();