Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DLightBarTransitionsController.java111 private ValueAnimator mTintAnimator; field in LightBarTransitionsController
158 float intensity = mTintAnimator != null && mTintAnimator.isRunning() in saveState()
248 if (mTintAnimator != null) { in animateIconTint()
249 mTintAnimator.cancel(); in animateIconTint()
252 mTintAnimator = ValueAnimator.ofFloat(mDarkIntensity, targetDarkIntensity); in animateIconTint()
253 mTintAnimator.addUpdateListener( in animateIconTint()
255 mTintAnimator.setDuration(duration); in animateIconTint()
256 mTintAnimator.setStartDelay(delay); in animateIconTint()
257 mTintAnimator.setInterpolator(Interpolators.LINEAR_OUT_SLOW_IN); in animateIconTint()
258 mTintAnimator.start(); in animateIconTint()
/frameworks/base/core/java/android/inputmethodservice/
DNavigationBarController.java176 private ValueAnimator mTintAnimator; field in NavigationBarController.Impl
443 if (mTintAnimator != null) { in onDestroy()
444 mTintAnimator.cancel(); in onDestroy()
445 mTintAnimator = null; in onDestroy()
540 if (mTintAnimator != null) { in onSystemBarAppearanceChanged()
541 mTintAnimator.cancel(); in onSystemBarAppearanceChanged()
543 mTintAnimator = ValueAnimator.ofFloat(mDarkIntensity, targetDarkIntensity); in onSystemBarAppearanceChanged()
544 mTintAnimator.addUpdateListener( in onSystemBarAppearanceChanged()
546 mTintAnimator.setDuration(DEFAULT_COLOR_ADAPT_TRANSITION_TIME); in onSystemBarAppearanceChanged()
547 mTintAnimator.setStartDelay(0); in onSystemBarAppearanceChanged()
[all …]