Home
last modified time | relevance | path

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

/aosp12/packages/apps/TV/src/com/android/tv/ui/
H A DTvViewUiManager.java121 private ObjectAnimator mBackgroundAnimator; field in TvViewUiManager
323 if (mBackgroundAnimator.isStarted()) { in setBackgroundColor()
325 mBackgroundAnimator.cancel(); in setBackgroundColor()
343 mBackgroundAnimator.setEvaluator(new ArgbEvaluator()); in setBackgroundColor()
345 mBackgroundAnimator.start(); in setBackgroundColor()
481 if (mBackgroundAnimator != null) { in initBackgroundAnimatorIfNeeded()
485 mBackgroundAnimator = new ObjectAnimator(); in initBackgroundAnimatorIfNeeded()
486 mBackgroundAnimator.setTarget(mContentView); in initBackgroundAnimatorIfNeeded()
487 mBackgroundAnimator.setPropertyName("backgroundColor"); in initBackgroundAnimatorIfNeeded()
488 mBackgroundAnimator.setDuration( in initBackgroundAnimatorIfNeeded()
[all …]
/aosp12/frameworks/base/core/java/android/app/
H A DExitTransitionCoordinator.java63 private ObjectAnimator mBackgroundAnimator; field in ExitTransitionCoordinator
285 if (mBackgroundAnimator == null) { in fadeOutBackground()
291 mBackgroundAnimator = ObjectAnimator.ofInt(background, "alpha", 0); in fadeOutBackground()
292 mBackgroundAnimator.addListener(new AnimatorListenerAdapter() { in fadeOutBackground()
295 mBackgroundAnimator = null; in fadeOutBackground()
303 mBackgroundAnimator.setDuration(getFadeDuration()); in fadeOutBackground()
304 mBackgroundAnimator.start(); in fadeOutBackground()
489 if (mBackgroundAnimator != null) { in clearState()
490 mBackgroundAnimator.cancel(); in clearState()
491 mBackgroundAnimator = null; in clearState()
H A DEnterTransitionCoordinator.java58 private ObjectAnimator mBackgroundAnimator; field in EnterTransitionCoordinator
614 mBackgroundAnimator = ObjectAnimator.ofInt(background, "alpha", 255); in startEnterTransition()
615 mBackgroundAnimator.setDuration(getFadeDuration()); in startEnterTransition()
616 mBackgroundAnimator.addListener(new AnimatorListenerAdapter() { in startEnterTransition()
623 mBackgroundAnimator.start(); in startEnterTransition()
645 if (mBackgroundAnimator != null) { in stop()
646 mBackgroundAnimator.end(); in stop()
647 mBackgroundAnimator = null; in stop()
688 if (mBackgroundAnimator != null) { in clearState()
689 mBackgroundAnimator.cancel(); in clearState()
[all …]
/aosp12/frameworks/base/boot/hiddenapi/
H A Dhiddenapi-max-target-o.txt4846 Landroid/app/EnterTransitionCoordinator;->mBackgroundAnimator:Landroid/animation/ObjectAnimator;
4895 Landroid/app/ExitTransitionCoordinator;->mBackgroundAnimator:Landroid/animation/ObjectAnimator;