Home
last modified time | relevance | path

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

/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/ui/binder/
H A DKeyguardSurfaceBehindParamsApplier.kt80 private var alphaAnimator = regex
128 if (alphaAnimator.isRunning) {
129 alphaAnimator.cancel()
145 if (alphaAnimator.isRunning) {
146 alphaAnimator.cancel()
150 alphaAnimator.setFloatValues(fromAlpha, viewParams.alpha)
151 alphaAnimator.start()
168 interactor.setAnimatingSurface(translateYSpring.isRunning || alphaAnimator.isRunning)
189 if (alphaAnimator.isRunning) {
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/controls/management/
H A DControlsAnimations.kt112 val alphaAnimator = ObjectAnimator.ofFloat(view, "transitionAlpha", 0.0f, 1.0f).apply { regex
125 playTogether(alphaAnimator, yAnimator)
138 val alphaAnimator = ObjectAnimator.ofFloat(view, "transitionAlpha", 0.0f).apply { regex
150 playTogether(alphaAnimator, yAnimator)
/aosp14/frameworks/base/core/java/android/inputmethodservice/navigationbar/
H A DKeyButtonRipple.java343 ObjectAnimator alphaAnimator = ObjectAnimator.ofFloat(this, "glowAlpha", mGlowAlpha, 0f); in exitSoftware() local
344 alphaAnimator.setInterpolator(ALPHA_OUT_INTERPOLATOR); in exitSoftware()
345 alphaAnimator.setDuration(ANIMATION_DURATION_FADE); in exitSoftware()
346 alphaAnimator.addListener(mAnimatorListener); in exitSoftware()
347 alphaAnimator.start(); in exitSoftware()
348 mRunningAnimations.add(alphaAnimator); in exitSoftware()
/aosp14/frameworks/base/packages/SystemUI/shared/src/com/android/systemui/navigationbar/buttons/
H A DKeyButtonRipple.java351 ObjectAnimator alphaAnimator = ObjectAnimator.ofFloat(this, "glowAlpha", mGlowAlpha, 0f); in exitSoftware() local
352 alphaAnimator.setInterpolator(ALPHA_OUT_INTERPOLATOR); in exitSoftware()
353 alphaAnimator.setDuration(ANIMATION_DURATION_FADE); in exitSoftware()
354 alphaAnimator.addListener(mAnimatorListener); in exitSoftware()
355 alphaAnimator.start(); in exitSoftware()
356 mRunningAnimations.add(alphaAnimator); in exitSoftware()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DRemoteInputView.java875 final Animator alphaAnimator = ObjectAnimator.ofFloat(this, View.ALPHA, 0f, 1f); in getFocusAnimator() local
876 alphaAnimator.setStartDelay(FOCUS_ANIMATION_FADE_IN_DELAY); in getFocusAnimator()
877 alphaAnimator.setDuration(FOCUS_ANIMATION_FADE_IN_DURATION); in getFocusAnimator()
878 alphaAnimator.setInterpolator(InterpolatorsAndroidX.LINEAR); in getFocusAnimator()
888 animatorSet.playTogether(alphaAnimator, scaleAnimator); in getFocusAnimator()
913 final Animator alphaAnimator = ObjectAnimator.ofFloat(this, View.ALPHA, 1f, 0f); in getDefocusAnimator() local
914 alphaAnimator.setDuration(FOCUS_ANIMATION_FADE_IN_DURATION); in getDefocusAnimator()
915 alphaAnimator.setStartDelay(DEFOCUS_ANIMATION_FADE_OUT_DELAY); in getDefocusAnimator()
916 alphaAnimator.setInterpolator(InterpolatorsAndroidX.LINEAR); in getDefocusAnimator()
932 animatorSet.playTogether(alphaAnimator, scaleAnimator); in getDefocusAnimator()
[all …]
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/dreams/
H A DDreamOverlayAnimationsController.kt171 alphaAnimator(
224 alphaAnimator(
235 alphaAnimator(
298 private fun alphaAnimator( regex