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

/frameworks/base/packages/SystemUI/src/com/android/keyguard/
H A DPasswordTextView.java347 float currentTextSizeFactor; field in class:PasswordTextView.CharState
419 currentTextSizeFactor = (float) animation.getAnimatedValue();
452 currentTextSizeFactor = 0.0f;
468 boolean textNeedsAnimation = (currentTextSizeFactor > 0.0f && textAnimator == null)
549 textAnimator = ValueAnimator.ofFloat(currentTextSizeFactor, 0.0f);
553 textAnimator.setDuration((long) (DISAPPEAR_DURATION * currentTextSizeFactor));
585 textAnimator = ValueAnimator.ofFloat(currentTextSizeFactor, 1.0f);
589 textAnimator.setDuration((long) (APPEAR_DURATION * (1f - currentTextSizeFactor)));
650 boolean textVisible = currentTextSizeFactor > 0;
654 float currYPosition = yPosition + charHeight / 2.0f * currentTextSizeFactor
[all...]

Completed in 187 milliseconds