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.java335 float currentTextSizeFactor; field in PasswordTextView.CharState
407 float beforeTextSizeFactor = currentTextSizeFactor;
408 currentTextSizeFactor = (float) animation.getAnimatedValue();
410 currentTextSizeFactor = beforeTextSizeFactor;
412 currentTextSizeFactor = (float) animation.getAnimatedValue();
454 (currentTextSizeFactor > 0.0f && textAnimator == null) || (textAnimator != null in startRemoveAnimation()
536 textAnimator = ValueAnimator.ofFloat(currentTextSizeFactor, 0.0f); in startTextDisappearAnimation()
540 textAnimator.setDuration((long) (DISAPPEAR_DURATION * currentTextSizeFactor)); in startTextDisappearAnimation()
572 textAnimator = ValueAnimator.ofFloat(currentTextSizeFactor, 1.0f); in startTextAppearAnimation()
576 textAnimator.setDuration((long) (APPEAR_DURATION * (1f - currentTextSizeFactor))); in startTextAppearAnimation()
[all …]