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.java381 ValueAnimator textTranslateAnimator; field in PasswordTextView.CharState
396 cancelAnimator(textTranslateAnimator);
397 textTranslateAnimator = null;
424 textTranslateAnimator = null;
635 if (textTranslateAnimator == null) { in startTextAppearAnimation()
636 textTranslateAnimator = ValueAnimator.ofFloat(1.0f, 0.0f); in startTextAppearAnimation()
637 textTranslateAnimator.addUpdateListener(textTranslationUpdater); in startTextAppearAnimation()
638 textTranslateAnimator.addListener(textTranslateFinishListener); in startTextAppearAnimation()
639 textTranslateAnimator.setInterpolator(mAppearInterpolator); in startTextAppearAnimation()
640 textTranslateAnimator.setDuration(APPEAR_DURATION); in startTextAppearAnimation()
[all …]