Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/src/com/android/systemui/controls/management/
DControlsAnimations.kt107 val alphaAnimator = ObjectAnimator.ofFloat(view, "transitionAlpha", 0.0f, 1.0f).apply { in <lambda>() constant
120 playTogether(alphaAnimator, yAnimator) in <lambda>()
133 val alphaAnimator = ObjectAnimator.ofFloat(view, "transitionAlpha", 0.0f).apply { in <lambda>() constant
145 playTogether(alphaAnimator, yAnimator) in <lambda>()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
DKeyButtonRipple.java318 ObjectAnimator alphaAnimator = ObjectAnimator.ofFloat(this, "glowAlpha", mGlowAlpha, 0f); in exitSoftware() local
319 alphaAnimator.setInterpolator(Interpolators.ALPHA_OUT); in exitSoftware()
320 alphaAnimator.setDuration(ANIMATION_DURATION_FADE); in exitSoftware()
321 alphaAnimator.addListener(mAnimatorListener); in exitSoftware()
322 alphaAnimator.start(); in exitSoftware()
323 mRunningAnimations.add(alphaAnimator); in exitSoftware()
/frameworks/base/packages/SystemUI/src/com/android/systemui/globalactions/
DGlobalActionsDialog.java2419 ObjectAnimator alphaAnimator =
2421 alphaAnimator.setInterpolator(Interpolators.LINEAR_OUT_SLOW_IN);
2422 alphaAnimator.setDuration(183);
2423 alphaAnimator.addUpdateListener((animation) -> {
2437 animatorSet.playTogether(alphaAnimator, xAnimator);
2445 ObjectAnimator alphaAnimator =
2447 alphaAnimator.setInterpolator(Interpolators.FAST_OUT_LINEAR_IN);
2448 alphaAnimator.setDuration(233);
2449 alphaAnimator.addUpdateListener((animation) -> {
2464 animatorSet.playTogether(alphaAnimator, xAnimator);