Home
last modified time | relevance | path

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

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