Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
DTaskView.java146 private ObjectAnimator mDimAnimator; field in TaskView
309 mDimAnimator = ObjectAnimator.ofFloat(this, DIM_ALPHA, getDimAlpha(), in updateViewPropertiesToTaskTransform()
311 mTmpAnimators.add(toAnimation.apply(AnimationProps.BOUNDS, mDimAnimator)); in updateViewPropertiesToTaskTransform()
369 if (mDimAnimator != null) { in cancelDimAnimationIfExists()
370 mDimAnimator.cancel(); in cancelDimAnimationIfExists()
557 mDimAnimator = animation.apply(AnimationProps.DIM_ALPHA, ObjectAnimator.ofFloat(this, in onStartLaunchTargetEnterAnimation()
559 mDimAnimator.addListener(postAnimationTrigger.decrementOnAnimationEnd()); in onStartLaunchTargetEnterAnimation()
560 mDimAnimator.start(); in onStartLaunchTargetEnterAnimation()
579 Utilities.cancelAnimationWithoutCallbacks(mDimAnimator); in onStartLaunchTargetLaunchAnimation()
583 mDimAnimator = animation.apply(AnimationProps.DIM_ALPHA, ObjectAnimator.ofFloat(this, in onStartLaunchTargetLaunchAnimation()
[all …]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/
DNotificationStackScrollLayout.java327 private ValueAnimator mDimAnimator; field in NotificationStackScrollLayout
332 mDimAnimator = null;
3825 if (mDimAnimator != null) {
3826 mDimAnimator.cancel();
3832 mDimAnimator = TimeAnimator.ofFloat(mDimAmount, target);
3833 mDimAnimator.setDuration(StackStateAnimator.ANIMATION_DURATION_DIMMED_ACTIVATED);
3834 mDimAnimator.setInterpolator(Interpolators.FAST_OUT_SLOW_IN);
3835 mDimAnimator.addListener(mDimEndListener);
3836 mDimAnimator.addUpdateListener(mDimUpdateListener);
3837 mDimAnimator.start();