Searched refs:mBackgroundAnimator (Results 1 – 3 of 3) sorted by relevance
119 private ObjectAnimator mBackgroundAnimator; field in ActivatableNotificationView434 if (mBackgroundAnimator != null) { in fadeDimmedBackground()435 startAlpha = (Float) mBackgroundAnimator.getAnimatedValue(); in fadeDimmedBackground()436 duration = (int) mBackgroundAnimator.getCurrentPlayTime(); in fadeDimmedBackground()437 mBackgroundAnimator.removeAllListeners(); in fadeDimmedBackground()438 mBackgroundAnimator.cancel(); in fadeDimmedBackground()445 mBackgroundAnimator = in fadeDimmedBackground()447 mBackgroundAnimator.setInterpolator(mFastOutSlowInInterpolator); in fadeDimmedBackground()448 mBackgroundAnimator.setDuration(duration); in fadeDimmedBackground()449 mBackgroundAnimator.addListener(new AnimatorListenerAdapter() { in fadeDimmedBackground()[all …]
64 private ObjectAnimator mBackgroundAnimator; field in ExitTransitionCoordinator287 if (mBackgroundAnimator == null) { in fadeOutBackground()293 mBackgroundAnimator = ObjectAnimator.ofInt(background, "alpha", 0); in fadeOutBackground()294 mBackgroundAnimator.addListener(new AnimatorListenerAdapter() { in fadeOutBackground()297 mBackgroundAnimator = null; in fadeOutBackground()304 mBackgroundAnimator.setDuration(getFadeDuration()); in fadeOutBackground()305 mBackgroundAnimator.start(); in fadeOutBackground()475 if (mBackgroundAnimator != null) { in finish()476 mBackgroundAnimator.cancel(); in finish()477 mBackgroundAnimator = null; in finish()
51 private ObjectAnimator mBackgroundAnimator; field in EnterTransitionCoordinator518 mBackgroundAnimator = ObjectAnimator.ofInt(background, "alpha", 255); in startEnterTransition()519 mBackgroundAnimator.setDuration(getFadeDuration()); in startEnterTransition()520 mBackgroundAnimator.addListener(new AnimatorListenerAdapter() { in startEnterTransition()526 mBackgroundAnimator.start(); in startEnterTransition()544 if (mBackgroundAnimator != null) { in stop()545 mBackgroundAnimator.end(); in stop()546 mBackgroundAnimator = null; in stop()578 if (mBackgroundAnimator != null) { in cancelEnter()579 mBackgroundAnimator.cancel(); in cancelEnter()[all …]