Home
last modified time | relevance | path

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

/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/bar/
DBubbleBarMenuViewController.java148 ValueAnimator showMenuAnimation = ValueAnimator.ofFloat(startValue, show ? 1 : 0); in animateTransition() local
149 showMenuAnimation.setDuration(MENU_ANIMATION_DURATION); in animateTransition()
150 showMenuAnimation.setInterpolator(Interpolators.EMPHASIZED); in animateTransition()
151 showMenuAnimation.addListener(new AnimatorListenerAdapter() { in animateTransition()
158 mMenuAnimator = showMenuAnimation; in animateTransition()
159 setupAnimatorListener(showMenuAnimation); in animateTransition()
160 showMenuAnimation.start(); in animateTransition()
164 private void setupAnimatorListener(ValueAnimator showMenuAnimation) { in setupAnimatorListener() argument
176 showMenuAnimation.addUpdateListener(animator -> { in setupAnimatorListener()