Home
last modified time | relevance | path

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

/packages/apps/Launcher3/quickstep/src/com/android/launcher3/taskbar/
DStashedHandleView.java18 import static com.android.launcher3.LauncherAnimUtils.SCALE_PROPERTY;
126 PropertyValuesHolder.ofFloat(SCALE_PROPERTY, scale)); in animateScale()
DTaskbarViewController.java21 import static com.android.launcher3.LauncherAnimUtils.SCALE_PROPERTY;
741 setter.addFloat(child, SCALE_PROPERTY, scale, 1f, interpolator); in createIconAlignmentController()
815 setter.setFloat(child, SCALE_PROPERTY, scaleUp, interpolator); in createIconAlignmentController()
/packages/apps/Launcher3/quickstep/src/com/android/launcher3/hybridhotseat/
DHotseatPredictionController.java18 import static com.android.launcher3.LauncherAnimUtils.SCALE_PROPERTY;
255 animationSet.play(ObjectAnimator.ofFloat(icon, SCALE_PROPERTY, 0.2f, 1)); in bindItems()
331 ObjectAnimator.ofFloat(icon, SCALE_PROPERTY, 1, 0.8f, 1).start(); in pinPrediction()
369 ObjectAnimator animator = ObjectAnimator.ofFloat(icon, SCALE_PROPERTY, 0); in removePredictedApps()
/packages/apps/Launcher3/src/com/android/launcher3/folder/
DFolderAnimationManager.java22 import static com.android.launcher3.LauncherAnimUtils.SCALE_PROPERTY;
217 play(a, getAnimator(mFolder.mContent, SCALE_PROPERTY, initialScale, finalScale)); in getAnimator()
218 play(a, getAnimator(mFolder.mFooter, SCALE_PROPERTY, initialScale, finalScale)); in getAnimator()
424 Animator scaleAnimator = getAnimator(v, SCALE_PROPERTY, initialScale, finalScale); in addPreviewItemAnimators()
/packages/apps/Launcher3/quickstep/src/com/android/launcher3/
DQuickstepTransitionManager.java47 import static com.android.launcher3.LauncherAnimUtils.SCALE_PROPERTY;
530 final float startScale = SCALE_PROPERTY.get(appsView); in getLauncherContentAnimator()
549 SCALE_PROPERTY.set(appsView, scales[0]); in getLauncherContentAnimator()
550 ObjectAnimator scale = ObjectAnimator.ofFloat(appsView, SCALE_PROPERTY, scales); in getLauncherContentAnimator()
560 SCALE_PROPERTY.set(appsView, startScale); in getLauncherContentAnimator()
585 ObjectAnimator scaleAnim = ObjectAnimator.ofFloat(view, SCALE_PROPERTY, scales) in getLauncherContentAnimator()
613 SCALE_PROPERTY.set(view, 1f); in getLauncherContentAnimator()
645 ObjectAnimator scaleAnim = ObjectAnimator.ofFloat(overview, SCALE_PROPERTY, scales); in composeViewContentAnimator()
652 SCALE_PROPERTY.set(overview, 1f); in composeViewContentAnimator()
/packages/apps/Launcher3/src/com/android/launcher3/views/
DAbstractSlideInView.java22 import static com.android.launcher3.LauncherAnimUtils.SCALE_PROPERTY;
322 SCALE_PROPERTY.set(mViewToAnimateInSwipeToDismiss, scale); in onUserSwipeToDismissProgressChanged()
/packages/apps/Launcher3/quickstep/src/com/android/quickstep/views/
DIconAppChipView.java20 import static com.android.launcher3.LauncherAnimUtils.SCALE_PROPERTY;
423 ObjectAnimator.ofFloat(mIconView, SCALE_PROPERTY, 1), in revealAnim()
/packages/apps/Launcher3/src/com/android/launcher3/allapps/
DAllAppsTransitionController.java21 import static com.android.launcher3.LauncherAnimUtils.SCALE_PROPERTY;
296 SCALE_PROPERTY.set(mLauncher.getAppsView(), scaleProgress); in onScaleProgressChanged()
/packages/apps/Launcher3/src/com/android/launcher3/
DLauncherAnimUtils.java58 public static final FloatProperty<View> SCALE_PROPERTY = field in LauncherAnimUtils