Home
last modified time | relevance | path

Searched refs:alphaAnim (Results 1 – 4 of 4) sorted by relevance

/packages/apps/Launcher3/src/com/android/launcher3/allapps/
DPrivateProfileManager.java557 ValueAnimator alphaAnim = ObjectAnimator.ofFloat(from, to); in animateAlphaOfIcons() local
558 alphaAnim.setDuration(APP_OPACITY_DURATION) in animateAlphaOfIcons()
560 alphaAnim.setInterpolator(Interpolators.LINEAR); in animateAlphaOfIcons()
561 alphaAnim.addUpdateListener(new ValueAnimator.AnimatorUpdateListener() { in animateAlphaOfIcons()
581 return alphaAnim; in animateAlphaOfIcons()
671 ValueAnimator alphaAnim = ObjectAnimator.ofInt(from, to); in animateAlphaOfPrivateSpaceContainer() local
675 alphaAnim.setDuration(CONTAINER_OPACITY_DURATION); in animateAlphaOfPrivateSpaceContainer()
676 alphaAnim.addUpdateListener(valueAnimator -> { in animateAlphaOfPrivateSpaceContainer()
685 return alphaAnim; in animateAlphaOfPrivateSpaceContainer()
697 ValueAnimator alphaAnim = ObjectAnimator.ofFloat(from, to); in translateFloatingMaskView() local
[all …]
/packages/apps/TvSettings/TwoPanelSettingsLib/src/com/android/tv/twopanelsettings/
DTwoPanelSettingsFragment.java1006 ObjectAnimator alphaAnim = ObjectAnimator.ofFloat(scrollToPanel, "alpha", in moveToPanel() local
1011 alphaAnim.setAutoCancel(true); in moveToPanel()
1012 alphaAnim.setDuration(PANEL_ANIMATION_ALPHA_MS); in moveToPanel()
1023 animatorSet.playTogether(alphaAnim, backgroundColorAnim, in moveToPanel()
1026 animatorSet.playTogether(alphaAnim, backgroundColorAnim); in moveToPanel()
1037 ObjectAnimator alphaAnim = ObjectAnimator.ofFloat(previewPanel, "alpha", in moveToPanel() local
1042 alphaAnim.setAutoCancel(true); in moveToPanel()
1043 alphaAnim.setDuration(PANEL_ANIMATION_ALPHA_MS); in moveToPanel()
1054 animatorSet.playTogether(alphaAnim, backgroundColorAnim, in moveToPanel()
1057 animatorSet.playTogether(alphaAnim, backgroundColorAnim); in moveToPanel()
/packages/apps/Launcher3/quickstep/src/com/android/quickstep/
DFallbackSwipeHandler.java329 ObjectAnimator alphaAnim = mHomeAlpha.animateToValue(mHomeAlpha.value, 1); in playAtomicAnimation() local
330 alphaAnim.setDuration(mDuration).setInterpolator(ACCELERATE); in playAtomicAnimation()
331 alphaAnim.start(); in playAtomicAnimation()
/packages/apps/Launcher3/quickstep/src/com/android/launcher3/taskbar/bubbles/
DBubbleBarView.java518 ObjectAnimator alphaAnim = ObjectAnimator.ofFloat(this, getLocationAnimAlphaProperty(), 0f) in getLocationUpdateFadeOutAnimator() local
520 alphaAnim.setStartDelay(FADE_OUT_ANIM_ALPHA_DELAY_MS); in getLocationUpdateFadeOutAnimator()
523 animatorSet.playTogether(positionAnim, alphaAnim); in getLocationUpdateFadeOutAnimator()
556 ObjectAnimator alphaAnim = ObjectAnimator.ofFloat(this, getLocationAnimAlphaProperty(), 1f) in getLocationUpdateFadeInAnimator() local
560 animatorSet.playTogether(positionAnim, alphaAnim); in getLocationUpdateFadeInAnimator()