Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/src/com/android/systemui/charging/
DWirelessChargingLayout.java109 ValueAnimator textFadeAnimator = ObjectAnimator.ofFloat(mPercentage, "alpha", 1, 0); in init() local
110 textFadeAnimator.setDuration(chargingAnimationFadeDuration); in init()
111 textFadeAnimator.setInterpolator(Interpolators.LINEAR); in init()
112 textFadeAnimator.setStartDelay(chargingAnimationFadeStartOffset); in init()
116 animatorSet.playTogether(textSizeAnimator, textOpacityAnimator, textFadeAnimator); in init()