Home
last modified time | relevance | path

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

/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DLockscreenShadeTransitionController.kt99 internal var pulseHeightAnimator: ValueAnimator? = null
163 if (pulseHeight != 0f && pulseHeightAnimator?.isRunning != true) {
566 val pulseHeightAnimator = ValueAnimator.ofFloat(pulseHeight, height) regex
567 pulseHeightAnimator.interpolator = Interpolators.FAST_OUT_SLOW_IN
568 pulseHeightAnimator.duration = SPRING_BACK_ANIMATION_LENGTH_MS
569 pulseHeightAnimator.addUpdateListener { animation: ValueAnimator ->
572 pulseHeightAnimator.start()
573 this.pulseHeightAnimator = pulseHeightAnimator
602 pulseHeightAnimator?.apply {