Home
last modified time | relevance | path

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

/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DLockscreenShadeTransitionController.kt113 internal var pulseHeightAnimator: ValueAnimator? = null
240 if (pulseHeight != 0f && pulseHeightAnimator?.isRunning != true) {
669 val pulseHeightAnimator = ValueAnimator.ofFloat(pulseHeight, height) regex
670 pulseHeightAnimator.interpolator = Interpolators.FAST_OUT_SLOW_IN
671 pulseHeightAnimator.duration = SPRING_BACK_ANIMATION_LENGTH_MS
672 pulseHeightAnimator.addUpdateListener { animation: ValueAnimator ->
675 pulseHeightAnimator.start()
676 this.pulseHeightAnimator = pulseHeightAnimator
705 pulseHeightAnimator?.apply {