Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/legacy/recents/src/com/android/systemui/recents/views/
DTaskView.java145 private ObjectAnimator mDimAnimator; field in TaskView
308 mDimAnimator = ObjectAnimator.ofFloat(this, DIM_ALPHA, getDimAlpha(), in updateViewPropertiesToTaskTransform()
310 mTmpAnimators.add(toAnimation.apply(AnimationProps.BOUNDS, mDimAnimator)); in updateViewPropertiesToTaskTransform()
368 if (mDimAnimator != null) { in cancelDimAnimationIfExists()
369 mDimAnimator.cancel(); in cancelDimAnimationIfExists()
556 mDimAnimator = animation.apply(AnimationProps.DIM_ALPHA, ObjectAnimator.ofFloat(this, in onStartLaunchTargetEnterAnimation()
558 mDimAnimator.addListener(postAnimationTrigger.decrementOnAnimationEnd()); in onStartLaunchTargetEnterAnimation()
559 mDimAnimator.start(); in onStartLaunchTargetEnterAnimation()
578 Utilities.cancelAnimationWithoutCallbacks(mDimAnimator); in onStartLaunchTargetLaunchAnimation()
582 mDimAnimator = animation.apply(AnimationProps.DIM_ALPHA, ObjectAnimator.ofFloat(this, in onStartLaunchTargetLaunchAnimation()
[all …]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/
DNotificationStackScrollLayout.java360 private ValueAnimator mDimAnimator; field in NotificationStackScrollLayout
365 mDimAnimator = null;
4598 if (mDimAnimator != null) {
4599 mDimAnimator.cancel();
4605 mDimAnimator = TimeAnimator.ofFloat(mDimAmount, target);
4606 mDimAnimator.setDuration(StackStateAnimator.ANIMATION_DURATION_DIMMED_ACTIVATED);
4607 mDimAnimator.setInterpolator(Interpolators.FAST_OUT_SLOW_IN);
4608 mDimAnimator.addListener(mDimEndListener);
4609 mDimAnimator.addUpdateListener(mDimUpdateListener);
4610 mDimAnimator.start();