Home
last modified time | relevance | path

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

/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tileimpl/
H A DQSIconViewImpl.java58 private ValueAnimator mColorAnimator = new ValueAnimator(); field in QSIconViewImpl
68 mColorAnimator.setDuration(QS_ANIM_LENGTH); in QSIconViewImpl()
203 mColorAnimator.cancel(); in animateGrayScale()
207 mColorAnimator.setValues(values); in animateGrayScale()
208 mColorAnimator.removeAllListeners(); in animateGrayScale()
209 mColorAnimator.addUpdateListener(animation -> { in animateGrayScale()
212 mColorAnimator.addListener(new EndRunnableAnimatorListener(endRunnable)); in animateGrayScale()
214 mColorAnimator.start(); in animateGrayScale()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DStatusBarIconView.java167 private ValueAnimator mColorAnimator; field in StatusBarIconView
759 if (mColorAnimator != null) { in setIconColor()
760 mColorAnimator.cancel(); in setIconColor()
767 mColorAnimator = ValueAnimator.ofFloat(0.0f, 1.0f); in setIconColor()
768 mColorAnimator.setInterpolator(Interpolators.FAST_OUT_SLOW_IN); in setIconColor()
769 mColorAnimator.setDuration(ANIMATION_DURATION_FAST); in setIconColor()
770 mColorAnimator.addUpdateListener(mColorUpdater); in setIconColor()
771 mColorAnimator.addListener(new AnimatorListenerAdapter() { in setIconColor()
774 mColorAnimator = null; in setIconColor()
778 mColorAnimator.start(); in setIconColor()