Searched refs:alphaAnimator (Results 1 – 8 of 8) sorted by relevance
/aosp12/packages/apps/Car/Hvac/src/com/android/car/hvac/ui/ |
H A D | HvacPanelRow.java | 78 ValueAnimator alphaAnimator; in getTransitionAnimation() local 82 alphaAnimator = ValueAnimator.ofFloat(0, maxAlpha); in getTransitionAnimation() 85 alphaAnimator = ValueAnimator.ofFloat(maxAlpha, 0); in getTransitionAnimation() 89 alphaAnimator.setStartDelay(delayMs); in getTransitionAnimation() 90 alphaAnimator.setDuration(EXPAND_ANIMATION_ALPHA_TIME_MS); in getTransitionAnimation() 91 alphaAnimator.addUpdateListener(mAlphaUpdateListener); in getTransitionAnimation() 96 set.playTogether(alphaAnimator, translationYAnimator); in getTransitionAnimation()
|
/aosp12/packages/apps/Camera2/src/com/android/camera/widget/ |
H A D | ModeOptions.java | 267 final ValueAnimator alphaAnimator = ValueAnimator.ofFloat(0.0f, 1.0f); in setupAnimators() local 268 alphaAnimator.setDuration(SHOW_ALPHA_ANIMATION_TIME); in setupAnimators() 269 alphaAnimator.addUpdateListener(new ValueAnimator.AnimatorUpdateListener() { in setupAnimators() 275 alphaAnimator.addListener(new AnimatorListenerAdapter() { in setupAnimators() 317 mVisibleAnimator.playTogether(radiusAnimator, alphaAnimator, paddingAnimatorSet); in setupAnimators() 347 final ValueAnimator alphaAnimator = ValueAnimator.ofFloat(1.0f, 0.0f); in setupAnimators() local 348 alphaAnimator.setDuration(HIDE_ALPHA_ANIMATION_TIME); in setupAnimators() 349 alphaAnimator.addUpdateListener(new ValueAnimator.AnimatorUpdateListener() { in setupAnimators() 356 alphaAnimator.addListener(new AnimatorListenerAdapter() { in setupAnimators() 373 mHiddenAnimator.playTogether(radiusAnimator, alphaAnimator); in setupAnimators()
|
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/controls/management/ |
H A D | ControlsAnimations.kt | 103 val alphaAnimator = ObjectAnimator.ofFloat(view, "transitionAlpha", 0.0f, 1.0f).apply { regex 116 playTogether(alphaAnimator, yAnimator) 129 val alphaAnimator = ObjectAnimator.ofFloat(view, "transitionAlpha", 0.0f).apply { regex 141 playTogether(alphaAnimator, yAnimator)
|
/aosp12/frameworks/base/packages/SystemUI/shared/src/com/android/systemui/navigationbar/buttons/ |
H A D | KeyButtonRipple.java | 349 ObjectAnimator alphaAnimator = ObjectAnimator.ofFloat(this, "glowAlpha", mGlowAlpha, 0f); in exitSoftware() local 350 alphaAnimator.setInterpolator(ALPHA_OUT_INTERPOLATOR); in exitSoftware() 351 alphaAnimator.setDuration(ANIMATION_DURATION_FADE); in exitSoftware() 352 alphaAnimator.addListener(mAnimatorListener); in exitSoftware() 353 alphaAnimator.start(); in exitSoftware() 354 mRunningAnimations.add(alphaAnimator); in exitSoftware()
|
/aosp12/packages/apps/Camera2/src/com/android/camera/ui/ |
H A D | ModeTransitionView.java | 520 ObjectAnimator alphaAnimator = ObjectAnimator.ofFloat(this, "alpha", 1f, 0f); in hideModeCover() local 521 alphaAnimator.setDuration(FADE_OUT_DURATION_MS); in hideModeCover() 523 alphaAnimator.setInterpolator(null); in hideModeCover() 524 alphaAnimator.addListener(new Animator.AnimatorListener() { in hideModeCover() 550 alphaAnimator.start(); in hideModeCover()
|
/aosp12/packages/apps/Dialer/java/com/android/incallui/answer/impl/affordance/ |
H A D | SwipeButtonView.java | 58 private ValueAnimator alphaAnimator; field in SwipeButtonView 98 alphaAnimator = null; 432 cancelAnimator(alphaAnimator); in setImageAlpha() 444 alphaAnimator = animator; in setImageAlpha()
|
/aosp12/packages/apps/TvSettings/Settings/src/com/android/tv/settings/dialog/old/ |
H A D | BaseContentFragment.java | 316 ObjectAnimator alphaAnimator = ObjectAnimator.ofFloat(v, "alpha", 1f); in fadeIn() local 317 alphaAnimator.setDuration(mActivity.getResources().getInteger( in fadeIn() 319 alphaAnimator.start(); in fadeIn()
|
/aosp12/packages/apps/Launcher3/quickstep/src/com/android/quickstep/interaction/ |
H A D | TutorialController.java | 598 ObjectAnimator alphaAnimator = ObjectAnimator.ofFloat( in createFingerDotAppearanceAnimatorSet() local 606 animators.add(alphaAnimator); in createFingerDotAppearanceAnimatorSet() 619 ObjectAnimator alphaAnimator = ObjectAnimator.ofFloat( in createFingerDotDisappearanceAnimatorSet() local 627 animators.add(alphaAnimator); in createFingerDotDisappearanceAnimatorSet()
|