Searched refs:mBackgroundAnimator (Results 1 – 4 of 4) sorted by relevance
79 private ObjectAnimator mBackgroundAnimator; field in DropZoneView176 } else if (mBackgroundAnimator != null && mBackgroundAnimator.isRunning()) { in getAnimator()177 return mBackgroundAnimator; in getAnimator()215 if (mBackgroundAnimator != null) { in animateBackground()216 mBackgroundAnimator.cancel(); in animateBackground()218 mBackgroundAnimator = ObjectAnimator.ofArgb(mColorDrawable, in animateBackground()223 mBackgroundAnimator.setInterpolator(FAST_OUT_SLOW_IN); in animateBackground()225 mBackgroundAnimator.start(); in animateBackground()
63 private ObjectAnimator mBackgroundAnimator; field in ExitTransitionCoordinator285 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()
58 private ObjectAnimator mBackgroundAnimator; field in EnterTransitionCoordinator614 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 …]
4846 Landroid/app/EnterTransitionCoordinator;->mBackgroundAnimator:Landroid/animation/ObjectAnimator;4895 Landroid/app/ExitTransitionCoordinator;->mBackgroundAnimator:Landroid/animation/ObjectAnimator;