Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/app/
DExitTransitionCoordinator.java58 private ObjectAnimator mBackgroundAnimator; field in ExitTransitionCoordinator
293 if (mBackgroundAnimator == null) { in fadeOutBackground()
299 mBackgroundAnimator = ObjectAnimator.ofInt(background, "alpha", 0); in fadeOutBackground()
300 mBackgroundAnimator.addListener(new AnimatorListenerAdapter() { in fadeOutBackground()
303 mBackgroundAnimator = null; in fadeOutBackground()
310 mBackgroundAnimator.setDuration(getFadeDuration()); in fadeOutBackground()
311 mBackgroundAnimator.start(); in fadeOutBackground()
492 if (mBackgroundAnimator != null) { in clearState()
493 mBackgroundAnimator.cancel(); in clearState()
494 mBackgroundAnimator = null; in clearState()
DEnterTransitionCoordinator.java53 private ObjectAnimator mBackgroundAnimator; field in EnterTransitionCoordinator
590 mBackgroundAnimator = ObjectAnimator.ofInt(background, "alpha", 255); in startEnterTransition()
591 mBackgroundAnimator.setDuration(getFadeDuration()); in startEnterTransition()
592 mBackgroundAnimator.addListener(new AnimatorListenerAdapter() { in startEnterTransition()
598 mBackgroundAnimator.start(); in startEnterTransition()
616 if (mBackgroundAnimator != null) { in stop()
617 mBackgroundAnimator.end(); in stop()
618 mBackgroundAnimator = null; in stop()
659 if (mBackgroundAnimator != null) { in clearState()
660 mBackgroundAnimator.cancel(); in clearState()
[all …]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DActivatableNotificationView.java126 private ObjectAnimator mBackgroundAnimator; field in ActivatableNotificationView
602 if (mBackgroundAnimator != null) { in fadeDimmedBackground()
603 startAlpha = (Float) mBackgroundAnimator.getAnimatedValue(); in fadeDimmedBackground()
604 duration = (int) mBackgroundAnimator.getCurrentPlayTime(); in fadeDimmedBackground()
605 mBackgroundAnimator.removeAllListeners(); in fadeDimmedBackground()
606 mBackgroundAnimator.cancel(); in fadeDimmedBackground()
613 mBackgroundAnimator = in fadeDimmedBackground()
615 mBackgroundAnimator.setInterpolator(Interpolators.FAST_OUT_SLOW_IN); in fadeDimmedBackground()
616 mBackgroundAnimator.setDuration(duration); in fadeDimmedBackground()
617 mBackgroundAnimator.addListener(new AnimatorListenerAdapter() { in fadeDimmedBackground()
[all …]