Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/src/com/android/keyguard/
DPasswordTextView.java340 ValueAnimator textTranslateAnimator; field in PasswordTextView.CharState
354 cancelAnimator(textTranslateAnimator);
355 textTranslateAnimator = null;
382 textTranslateAnimator = null;
581 if (textTranslateAnimator == null) { in startTextAppearAnimation()
582 textTranslateAnimator = ValueAnimator.ofFloat(1.0f, 0.0f); in startTextAppearAnimation()
583 textTranslateAnimator.addUpdateListener(mTextTranslationUpdater); in startTextAppearAnimation()
584 textTranslateAnimator.addListener(textTranslateFinishListener); in startTextAppearAnimation()
585 textTranslateAnimator.setInterpolator(mAppearInterpolator); in startTextAppearAnimation()
586 textTranslateAnimator.setDuration(APPEAR_DURATION); in startTextAppearAnimation()
[all …]