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 D | KeyguardSurfaceBehindParamsApplier.kt | 80 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 D | ControlsAnimations.kt | 112 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 D | KeyButtonRipple.java | 343 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 D | KeyButtonRipple.java | 351 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 D | RemoteInputView.java | 875 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 D | DreamOverlayAnimationsController.kt | 171 alphaAnimator( 224 alphaAnimator( 235 alphaAnimator( 298 private fun alphaAnimator( regex
|