Searched defs:widthAnimator (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/keyguard/
H A DPasswordTextView.java349 ValueAnimator widthAnimator; field in class:PasswordTextView.CharState
406 widthAnimator = null;
463 cancelAnimator(widthAnimator);
464 widthAnimator = null;
474 boolean widthNeedsAnimation = (currentWidthFactor > 0.0f && widthAnimator == null)
475 || (widthAnimator != null && widthAnimationIsGrowing);
492 boolean widthNeedsAnimation = (widthAnimator == null || !widthAnimationIsGrowing);
540 cancelAnimator(widthAnimator);
541 widthAnimator = ValueAnimator.ofFloat(currentWidthFactor, 0.0f);
542 widthAnimator
[all...]

Completed in 69 milliseconds