Home
last modified time | relevance | path

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

/aosp14/frameworks/base/packages/SystemUI/src/com/android/keyguard/
H A DPasswordTextView.java462 float currentTextSizeFactor; field in PasswordTextView.CharState
533 float beforeTextSizeFactor = currentTextSizeFactor;
534 currentTextSizeFactor = (float) animation.getAnimatedValue();
536 currentTextSizeFactor = beforeTextSizeFactor;
538 currentTextSizeFactor = (float) animation.getAnimatedValue();
659 textAnimator = ValueAnimator.ofFloat(currentTextSizeFactor, 0.0f); in startTextDisappearAnimation()
663 textAnimator.setDuration((long) (DISAPPEAR_DURATION * currentTextSizeFactor)); in startTextDisappearAnimation()
695 textAnimator = ValueAnimator.ofFloat(currentTextSizeFactor, 1.0f); in startTextAppearAnimation()
760 boolean textVisible = currentTextSizeFactor > 0; in draw()
769 canvas.scale(currentTextSizeFactor, currentTextSizeFactor); in draw()
[all …]