Home
last modified time | relevance | path

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

/aosp12/frameworks/base/packages/SystemUI/src/com/android/keyguard/
H A DPasswordTextView.java411 ValueAnimator textTranslateAnimator; field in PasswordTextView.CharState
426 cancelAnimator(textTranslateAnimator);
427 textTranslateAnimator = null;
454 textTranslateAnimator = null;
665 if (textTranslateAnimator == null) { in startTextAppearAnimation()
666 textTranslateAnimator = ValueAnimator.ofFloat(1.0f, 0.0f); in startTextAppearAnimation()
667 textTranslateAnimator.addUpdateListener(textTranslationUpdater); in startTextAppearAnimation()
668 textTranslateAnimator.addListener(textTranslateFinishListener); in startTextAppearAnimation()
669 textTranslateAnimator.setInterpolator(mAppearInterpolator); in startTextAppearAnimation()
670 textTranslateAnimator.setDuration(APPEAR_DURATION); in startTextAppearAnimation()
[all …]