Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/ui/binder/
DKeyguardSurfaceBehindParamsApplier.kt85 private var alphaAnimator = in <lambda>() variable
134 if (alphaAnimator.isRunning) { in <lambda>()
135 alphaAnimator.cancel() in <lambda>()
151 if (alphaAnimator.isRunning) { in <lambda>()
152 alphaAnimator.cancel() in <lambda>()
156 alphaAnimator.setFloatValues(fromAlpha, viewParams.alpha) in <lambda>()
157 alphaAnimator.start() in <lambda>()
175 interactor.setAnimatingSurface(translateYSpring.isRunning || alphaAnimator.isRunning) in <lambda>()
196 if (alphaAnimator.isRunning) { in <lambda>()
/frameworks/base/packages/SystemUI/src/com/android/systemui/controls/management/
DControlsAnimations.kt112 val alphaAnimator = ObjectAnimator.ofFloat(view, "transitionAlpha", 0.0f, 1.0f).apply { in <lambda>() constant
125 playTogether(alphaAnimator, yAnimator) in <lambda>()
138 val alphaAnimator = ObjectAnimator.ofFloat(view, "transitionAlpha", 0.0f).apply { in <lambda>() constant
150 playTogether(alphaAnimator, yAnimator) in <lambda>()
/frameworks/base/core/java/android/inputmethodservice/navigationbar/
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()
/frameworks/base/packages/SystemUI/shared/src/com/android/systemui/shared/navigationbar/
DKeyButtonRipple.java373 ObjectAnimator alphaAnimator = ObjectAnimator.ofFloat(this, "glowAlpha", mGlowAlpha, 0f); in exitSoftware() local
374 alphaAnimator.setInterpolator(ALPHA_OUT_INTERPOLATOR); in exitSoftware()
375 alphaAnimator.setDuration(getFadeDuration()); in exitSoftware()
376 alphaAnimator.addListener(mAnimatorListener); in exitSoftware()
377 alphaAnimator.start(); in exitSoftware()
378 mRunningAnimations.add(alphaAnimator); in exitSoftware()
/frameworks/base/packages/SystemUI/src/com/android/systemui/dreams/
DDreamOverlayAnimationsController.kt157 alphaAnimator( in <lambda>()
210 alphaAnimator( in <lambda>()
221 alphaAnimator( in <lambda>()
285 private fun alphaAnimator( in <lambda>() method
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
DRemoteInputView.java824 final Animator alphaAnimator = ObjectAnimator.ofFloat(this, View.ALPHA, 0f, 1f); in getFocusAnimator() local
825 alphaAnimator.setStartDelay(FOCUS_ANIMATION_FADE_IN_DELAY); in getFocusAnimator()
826 alphaAnimator.setDuration(FOCUS_ANIMATION_FADE_IN_DURATION); in getFocusAnimator()
827 alphaAnimator.setInterpolator(InterpolatorsAndroidX.LINEAR); in getFocusAnimator()
837 animatorSet.playTogether(alphaAnimator, scaleAnimator); in getFocusAnimator()
849 animatorSet.playTogether(alphaAnimator, scaleAnimator, fadeOutViewAlphaAnimator); in getFocusAnimator()
862 final Animator alphaAnimator = ObjectAnimator.ofFloat(this, View.ALPHA, 1f, 0f); in getDefocusAnimator() local
863 alphaAnimator.setDuration(FOCUS_ANIMATION_FADE_IN_DURATION); in getDefocusAnimator()
864 alphaAnimator.setStartDelay(DEFOCUS_ANIMATION_FADE_OUT_DELAY); in getDefocusAnimator()
865 alphaAnimator.setInterpolator(InterpolatorsAndroidX.LINEAR); in getDefocusAnimator()
[all …]