Home
last modified time | relevance | path

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

/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/charging/
H A DWirelessChargingLayout.java118 ValueAnimator textFadeAnimator = ObjectAnimator.ofFloat(percentage, "alpha", 1, 0); in init() local
119 textFadeAnimator.setDuration(chargingAnimationFadeDuration); in init()
120 textFadeAnimator.setInterpolator(Interpolators.LINEAR); in init()
121 textFadeAnimator.setStartDelay(chargingAnimationFadeStartOffset); in init()
125 animatorSet.playTogether(textSizeAnimator, textOpacityAnimator, textFadeAnimator); in init()