Home
last modified time | relevance | path

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

/packages/apps/Launcher3/tests/src/com/android/launcher3/folder/
DPreviewBackgroundTest.java73 assertEquals("Duration not correct.", mPreviewBackground.mScaleAnimator.getDuration(), in testAnimateScale_restToHovered()
76 mPreviewBackground.mScaleAnimator.getInterpolator() instanceof PathInterpolator); in testAnimateScale_restToHovered()
87 assertNull("Animator not null.", mPreviewBackground.mScaleAnimator); in testAnimateScale_restToNotHovered()
102 assertNull("Animator not null.", mPreviewBackground.mScaleAnimator); in testAnimateScale_hoveredToHovered()
118 assertEquals("Duration not correct.", mPreviewBackground.mScaleAnimator.getDuration(), in testAnimateScale_hoveredToRest()
121 mPreviewBackground.mScaleAnimator.getInterpolator() instanceof PathInterpolator); in testAnimateScale_hoveredToRest()
133 assertEquals("Duration not correct.", mPreviewBackground.mScaleAnimator.getDuration(), in testAnimateScale_restToAccept()
136 mPreviewBackground.mScaleAnimator.getInterpolator() in testAnimateScale_restToAccept()
148 assertNull("Animator not null.", mPreviewBackground.mScaleAnimator); in testAnimateScale_restToRest()
163 assertEquals("Duration not correct.", mPreviewBackground.mScaleAnimator.getDuration(), in testAnimateScale_acceptToRest()
[all …]
/packages/apps/Launcher3/src/com/android/launcher3/folder/
DPreviewBackground.java107 @VisibleForTesting protected ValueAnimator mScaleAnimator; field in PreviewBackground
412 if (mScaleAnimator != null) { in animateScale()
413 mScaleAnimator.cancel(); in animateScale()
433 mScaleAnimator = ValueAnimator.ofFloat(0f, 1.0f); in animateScale()
434 mScaleAnimator.addUpdateListener(animation -> { in animateScale()
439 mScaleAnimator.addListener(new AnimatorListenerAdapter() { in animateScale()
453 mScaleAnimator = null; in animateScale()
456 mScaleAnimator.setInterpolator(interpolator); in animateScale()
457 mScaleAnimator.setDuration(duration); in animateScale()
458 mScaleAnimator.start(); in animateScale()
/packages/apps/Camera2/src/com/android/camera/widget/
DFilmstripView.java1915 private final ValueAnimator mScaleAnimator; field in FilmstripView.FilmstripControllerImpl
1984 mScaleAnimator = new ValueAnimator(); in FilmstripControllerImpl()
1985 mScaleAnimator.addUpdateListener(mScaleAnimatorUpdateListener); in FilmstripControllerImpl()
1986 mScaleAnimator.setInterpolator(decelerateInterpolator); in FilmstripControllerImpl()
1987 mScaleAnimator.addListener(new Animator.AnimatorListener() { in FilmstripControllerImpl()
2060 return mScaleAnimator.isRunning(); in isScaling()
2293 mScaleAnimator.cancel();
2331 mScaleAnimator.setDuration(duration);
2332 mScaleAnimator.setFloatValues(mScale, scale);
2333 mScaleAnimator.start();