Searched refs:currentWidthFactor (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/keyguard/
H A DPasswordTextView.java197 width += mCharPadding * charState.currentWidthFactor;
199 width += charLength * charState.currentWidthFactor;
349 float currentWidthFactor; field in class:PasswordTextView.CharState
437 currentWidthFactor = (float) animation.getAnimatedValue();
454 currentWidthFactor = 0.0f;
470 boolean widthNeedsAnimation = (currentWidthFactor > 0.0f && widthAnimator == null)
537 widthAnimator = ValueAnimator.ofFloat(currentWidthFactor, 0.0f);
541 widthAnimator.setDuration((long) (DISAPPEAR_DURATION * currentWidthFactor));
575 widthAnimator = ValueAnimator.ofFloat(currentWidthFactor, 1.0f);
578 widthAnimator.setDuration((long) (APPEAR_DURATION * (1f - currentWidthFactor)));
[all...]

Completed in 812 milliseconds