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.java374 ValueAnimator widthAnimator; field in PasswordTextView.CharState
431 widthAnimator = null;
500 cancelAnimator(widthAnimator); in reset()
501 widthAnimator = null; in reset()
511 boolean widthNeedsAnimation = (currentWidthFactor > 0.0f && widthAnimator == null) in startRemoveAnimation()
512 || (widthAnimator != null && widthAnimationIsGrowing); in startRemoveAnimation()
529 boolean widthNeedsAnimation = (widthAnimator == null || !widthAnimationIsGrowing); in startAppearAnimation()
577 cancelAnimator(widthAnimator); in startWidthDisappearAnimation()
578 widthAnimator = ValueAnimator.ofFloat(currentWidthFactor, 0.0f); in startWidthDisappearAnimation()
579 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()