Searched defs:ofFloat (Results 1 - 2 of 2) sorted by relevance

/packages/apps/Launcher2/src/com/android/launcher2/
H A DLauncherAnimUtils.java93 public static ValueAnimator ofFloat(View target, float... values) { method in class:LauncherAnimUtils
100 public static ObjectAnimator ofFloat(View target, String propertyName, float... values) { method in class:LauncherAnimUtils
/packages/apps/Launcher3/src/com/android/launcher3/
H A DLauncherAnimUtils.java95 public static ValueAnimator ofFloat(View target, float... values) { method in class:LauncherAnimUtils
102 public static ObjectAnimator ofFloat(View target, Property<View, Float> property, method in class:LauncherAnimUtils
104 ObjectAnimator anim = ObjectAnimator.ofFloat(target, property, values);
113 PropertyValuesHolder.ofFloat(View.ALPHA, alpha),
114 PropertyValuesHolder.ofFloat(View.SCALE_X, scaleX),
115 PropertyValuesHolder.ofFloat(View.SCALE_Y, scaleY));

Completed in 866 milliseconds