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;
131 PropertyValuesHolder.ofFloat(SCALE_PROPERTY, scale)); in animateScale()
DTaskbarViewController.java31 import static com.android.launcher3.LauncherAnimUtils.SCALE_PROPERTY;
1042 setter.addFloat(child, SCALE_PROPERTY, scale, 1f, interpolator); in createIconAlignmentController()
1111 setter.setFloat(child, SCALE_PROPERTY, scaleUp, interpolator); in createIconAlignmentController()
1264 Animator appearingScaleAnimator = ObjectAnimator.ofFloat(null, SCALE_PROPERTY, 0f, 1f); in createLayoutTransitionForRunningApps()
1277 Animator disappearingScaleAnimator = ObjectAnimator.ofFloat(null, SCALE_PROPERTY, 1f, 0f); in createLayoutTransitionForRunningApps()
/packages/apps/Launcher3/src/com/android/launcher3/folder/
DFolderAnimationManager.java22 import static com.android.launcher3.LauncherAnimUtils.SCALE_PROPERTY;
220 play(a, getAnimator(mFolder.mContent, SCALE_PROPERTY, initialScale, finalScale)); in getAnimator()
221 play(a, getAnimator(mFolder.mFooter, SCALE_PROPERTY, initialScale, finalScale)); in getAnimator()
422 Animator scaleAnimator = getAnimator(v, SCALE_PROPERTY, initialScale, finalScale); in addPreviewItemAnimators()
/packages/apps/Launcher3/quickstep/src/com/android/launcher3/hybridhotseat/
DHotseatPredictionController.java18 import static com.android.launcher3.LauncherAnimUtils.SCALE_PROPERTY;
253 animationSet.play(ObjectAnimator.ofFloat(icon, SCALE_PROPERTY, 0.2f, 1)); in bindItems()
329 ObjectAnimator.ofFloat(icon, SCALE_PROPERTY, 1, 0.8f, 1).start(); in pinPrediction()
367 ObjectAnimator animator = ObjectAnimator.ofFloat(icon, SCALE_PROPERTY, 0); in removePredictedApps()
/packages/apps/Launcher3/src/com/android/launcher3/views/
DAbstractSlideInView.java22 import static com.android.launcher3.LauncherAnimUtils.SCALE_PROPERTY;
321 SCALE_PROPERTY.set(mViewToAnimateInSwipeToDismiss, scale); in onUserSwipeToDismissProgressChanged()
/packages/apps/Launcher3/src/com/android/launcher3/allapps/
DAllAppsTransitionController.java20 import static com.android.launcher3.LauncherAnimUtils.SCALE_PROPERTY;
292 SCALE_PROPERTY.set(mLauncher.getAppsView(), scaleProgress); in onScaleProgressChanged()
/packages/apps/Launcher3/quickstep/src/com/android/launcher3/
DQuickstepTransitionManager.java51 import static com.android.launcher3.LauncherAnimUtils.SCALE_PROPERTY;
562 final float startScale = SCALE_PROPERTY.get(appsView); in getLauncherContentAnimator()
581 SCALE_PROPERTY.set(appsView, scales[0]); in getLauncherContentAnimator()
582 ObjectAnimator scale = ObjectAnimator.ofFloat(appsView, SCALE_PROPERTY, scales); in getLauncherContentAnimator()
592 SCALE_PROPERTY.set(appsView, startScale); in getLauncherContentAnimator()
639 ObjectAnimator scaleAnim = ObjectAnimator.ofFloat(view, SCALE_PROPERTY, scale) in getLauncherContentAnimator()
647 SCALE_PROPERTY.set(view, 1f); in getLauncherContentAnimator()
681 ObjectAnimator scaleAnim = ObjectAnimator.ofFloat(overview, SCALE_PROPERTY, scales); in composeViewContentAnimator()
688 SCALE_PROPERTY.set(overview, 1f); in composeViewContentAnimator()
/packages/apps/Launcher3/quickstep/src/com/android/quickstep/views/
DIconAppChipView.kt34 import com.android.launcher3.LauncherAnimUtils.SCALE_PROPERTY in <lambda>()
388 ObjectAnimator.ofFloat(iconView, SCALE_PROPERTY, 1f), in <lambda>()
/packages/apps/Launcher3/src/com/android/launcher3/
DLauncherAnimUtils.java58 public static final FloatProperty<View> SCALE_PROPERTY = field in LauncherAnimUtils