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.java352 ValueAnimator textTranslateAnimator; field in PasswordTextView.CharState
367 cancelAnimator(textTranslateAnimator);
368 textTranslateAnimator = null;
395 textTranslateAnimator = null;
594 if (textTranslateAnimator == null) { in startTextAppearAnimation()
595 textTranslateAnimator = ValueAnimator.ofFloat(1.0f, 0.0f); in startTextAppearAnimation()
596 textTranslateAnimator.addUpdateListener(textTranslationUpdater); in startTextAppearAnimation()
597 textTranslateAnimator.addListener(textTranslateFinishListener); in startTextAppearAnimation()
598 textTranslateAnimator.setInterpolator(mAppearInterpolator); in startTextAppearAnimation()
599 textTranslateAnimator.setDuration(APPEAR_DURATION); in startTextAppearAnimation()
[all …]