Home
last modified time | relevance | path

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

/packages/apps/Launcher3/quickstep/recents_ui_overrides/src/com/android/quickstep/
DBaseSwipeUpHandlerV2.java973 RectFSpringAnim windowAnim = createWindowAnimationToHome(start, homeAnimFactory); in animateToProgressInternal() local
974 windowAnim.addAnimatorListener(new AnimationSuccessListener() { in animateToProgressInternal()
988 windowAnim.start(mContext, velocityPxPerMs); in animateToProgressInternal()
990 mRunningWindowAnim = RunningWindowAnim.wrap(windowAnim); in animateToProgressInternal()
993 ValueAnimator windowAnim = mCurrentShift.animateToValue(start, end); in animateToProgressInternal() local
994 windowAnim.setDuration(duration).setInterpolator(interpolator); in animateToProgressInternal()
995 windowAnim.addUpdateListener(valueAnimator -> { in animateToProgressInternal()
998 windowAnim.addListener(new AnimationSuccessListener() { in animateToProgressInternal()
1029 windowAnim.start(); in animateToProgressInternal()
1030 mRunningWindowAnim = RunningWindowAnim.wrap(windowAnim); in animateToProgressInternal()
/packages/apps/Launcher3/quickstep/src/com/android/quickstep/interaction/
DSwipeUpGestureTutorialController.java222 RectFSpringAnim windowAnim = createWindowAnimationToHome(startShift, homeAnimFactory); in handleSwipeUpToHome() local
223 windowAnim.start(mContext, velocityPxPerMs); in handleSwipeUpToHome()
224 return windowAnim; in handleSwipeUpToHome()