Searched refs:widthAnimator (Results 1 – 3 of 3) sorted by relevance
333 ValueAnimator widthAnimator; field in PasswordTextView.CharState389 widthAnimator = null;457 (currentWidthFactor > 0.0f && widthAnimator == null) || (widthAnimator != null in startRemoveAnimation()475 boolean widthNeedsAnimation = (widthAnimator == null || !widthAnimationIsGrowing); in startAppearAnimation()523 cancelAnimator(widthAnimator); in startWidthDisappearAnimation()524 widthAnimator = ValueAnimator.ofFloat(currentWidthFactor, 0.0f); in startWidthDisappearAnimation()525 widthAnimator.addUpdateListener(mWidthUpdater); in startWidthDisappearAnimation()526 widthAnimator.addListener(widthFinishListener); in startWidthDisappearAnimation()527 widthAnimator.addListener(removeEndListener); in startWidthDisappearAnimation()528 widthAnimator.setDuration((long) (DISAPPEAR_DURATION * currentWidthFactor)); in startWidthDisappearAnimation()[all …]
185 ValueAnimator widthAnimator = ValueAnimator.ofInt(mContentWidth, contentWidth); in updateForContentDimensions() local186 widthAnimator.addUpdateListener((animation) -> { in updateForContentDimensions()194 as.playTogether(cornerAnimator, heightAnimator, widthAnimator, marginAnimator); in updateForContentDimensions()
145 ObjectAnimator widthAnimator = ObjectAnimator.ofInt(this, WIDTH_PROPERTY, in animateToTarget() local150 mAnimator.playTogether(widthAnimator, heightAnimator); in animateToTarget()