Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/src/com/android/keyguard/
DPasswordTextView.java375 float currentDotSizeFactor; field in PasswordTextView.CharState
437 currentDotSizeFactor = (float) animation.getAnimatedValue();
492 currentDotSizeFactor = 0.0f; in reset()
505 boolean dotNeedsAnimation = (currentDotSizeFactor > 0.0f && dotAnimator == null) in startRemoveAnimation()
600 ValueAnimator animator = ValueAnimator.ofFloat(currentDotSizeFactor, 0.0f); in startDotDisappearAnimation()
604 long duration = (long) (DISAPPEAR_DURATION * Math.min(currentDotSizeFactor, 1.0f)); in startDotDisappearAnimation()
647 ValueAnimator overShootAnimator = ValueAnimator.ofFloat(currentDotSizeFactor, in startDotAppearAnimation()
665 ValueAnimator growAnimator = ValueAnimator.ofFloat(currentDotSizeFactor, 1.0f); in startDotAppearAnimation()
667 growAnimator.setDuration((long) (APPEAR_DURATION * (1.0f - currentDotSizeFactor))); in startDotAppearAnimation()
690 boolean dotVisible = currentDotSizeFactor > 0; in draw()
[all …]