summaryrefslogtreecommitdiffstats
path: root/src/com/android/launcher3/anim
diff options
context:
space:
mode:
authorJon Miranda <jonmiranda@google.com>2018-05-08 10:13:18 -0700
committerJon Miranda <jonmiranda@google.com>2018-05-09 12:51:34 -0700
commitd26d5aaa6d2ed0622f1b3cb4b4fd3c7a7277f5a3 (patch)
tree80c11130296a8ecb47378ba47e3e89597b66ae26 /src/com/android/launcher3/anim
parent639b07178f6412cd931818c7787c5f6effd42317 (diff)
downloadandroid_packages_apps_Trebuchet-d26d5aaa6d2ed0622f1b3cb4b4fd3c7a7277f5a3.tar.gz
android_packages_apps_Trebuchet-d26d5aaa6d2ed0622f1b3cb4b4fd3c7a7277f5a3.tar.bz2
android_packages_apps_Trebuchet-d26d5aaa6d2ed0622f1b3cb4b4fd3c7a7277f5a3.zip
Tweaks to app closing animation.
Change-Id: Ia2cbc1401a57ad8dc3e3553110497eb35c19fe64
Diffstat (limited to 'src/com/android/launcher3/anim')
-rw-r--r--src/com/android/launcher3/anim/Interpolators.java3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/com/android/launcher3/anim/Interpolators.java b/src/com/android/launcher3/anim/Interpolators.java
index 06ddf2208..0d388feeb 100644
--- a/src/com/android/launcher3/anim/Interpolators.java
+++ b/src/com/android/launcher3/anim/Interpolators.java
@@ -38,6 +38,7 @@ public class Interpolators {
public static final Interpolator DEACCEL = new DecelerateInterpolator();
public static final Interpolator DEACCEL_1_5 = new DecelerateInterpolator(1.5f);
+ public static final Interpolator DEACCEL_1_7 = new DecelerateInterpolator(1.7f);
public static final Interpolator DEACCEL_2 = new DecelerateInterpolator(2);
public static final Interpolator DEACCEL_2_5 = new DecelerateInterpolator(2.5f);
public static final Interpolator DEACCEL_3 = new DecelerateInterpolator(3f);
@@ -57,8 +58,6 @@ public class Interpolators {
EXAGGERATED_EASE = new PathInterpolator(exaggeratedEase);
}
- public static final Interpolator APP_CLOSE_ALPHA = new PathInterpolator(0.4f, 0, 1f, 1f);
-
public static final Interpolator OVERSHOOT_0 = new OvershootInterpolator(0);
public static final Interpolator TOUCH_RESPONSE_INTERPOLATOR =