Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/src/com/android/keyguard/
DPasswordTextView.java372 ValueAnimator widthAnimator; field in PasswordTextView.CharState
429 widthAnimator = null;
498 cancelAnimator(widthAnimator); in reset()
499 widthAnimator = null; in reset()
509 boolean widthNeedsAnimation = (currentWidthFactor > 0.0f && widthAnimator == null) in startRemoveAnimation()
510 || (widthAnimator != null && widthAnimationIsGrowing); in startRemoveAnimation()
527 boolean widthNeedsAnimation = (widthAnimator == null || !widthAnimationIsGrowing); in startAppearAnimation()
575 cancelAnimator(widthAnimator); in startWidthDisappearAnimation()
576 widthAnimator = ValueAnimator.ofFloat(currentWidthFactor, 0.0f); in startWidthDisappearAnimation()
577 widthAnimator.addUpdateListener(widthUpdater); in startWidthDisappearAnimation()
[all …]
/frameworks/base/packages/SystemUI/src/com/android/systemui/stackdivider/
DDividerHandleView.java114 ObjectAnimator widthAnimator = ObjectAnimator.ofInt(this, WIDTH_PROPERTY, in animateToTarget() local
119 mAnimator.playTogether(widthAnimator, heightAnimator); in animateToTarget()