Home
last modified time | relevance | path

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

/aosp12/frameworks/base/graphics/java/android/graphics/drawable/
H A DRippleDrawable.java228 private ValueAnimator mBackgroundAnimation; field in RippleDrawable
827 if (mBackgroundAnimation != null) mBackgroundAnimation.cancel(); in exitPatternedBackgroundAnimation()
846 if (mBackgroundAnimation != null) mBackgroundAnimation.cancel(); in enterPatternedBackgroundAnimation()
858 mBackgroundAnimation = ValueAnimator.ofFloat(mBackgroundOpacity, mTargetBackgroundOpacity); in startBackgroundAnimation()
859 mBackgroundAnimation.setInterpolator(LINEAR_INTERPOLATOR); in startBackgroundAnimation()
860 mBackgroundAnimation.setDuration(BACKGROUND_OPACITY_DURATION); in startBackgroundAnimation()
861 mBackgroundAnimation.addUpdateListener(update -> { in startBackgroundAnimation()
865 mBackgroundAnimation.start(); in startBackgroundAnimation()