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

/frameworks/base/packages/SystemUI/src/com/android/keyguard/
H A DPasswordTextView.java348 float currentDotSizeFactor; field in class:PasswordTextView.CharState
410 currentDotSizeFactor = (float) animation.getAnimatedValue();
453 currentDotSizeFactor = 0.0f;
466 boolean dotNeedsAnimation = (currentDotSizeFactor > 0.0f && dotAnimator == null)
561 ValueAnimator animator = ValueAnimator.ofFloat(currentDotSizeFactor, 0.0f);
565 long duration = (long) (DISAPPEAR_DURATION * Math.min(currentDotSizeFactor, 1.0f));
608 ValueAnimator overShootAnimator = ValueAnimator.ofFloat(currentDotSizeFactor,
626 ValueAnimator growAnimator = ValueAnimator.ofFloat(currentDotSizeFactor, 1.0f);
628 growAnimator.setDuration((long) (APPEAR_DURATION * (1.0f - currentDotSizeFactor)));
651 boolean dotVisible = currentDotSizeFactor >
[all...]

Completed in 294 milliseconds