summaryrefslogtreecommitdiffstats
path: root/src/com/android/launcher2/Dimmable.java
diff options
context:
space:
mode:
authorAdam Cohen <adamcohen@google.com>2010-09-30 14:11:56 -0700
committerAdam Cohen <adamcohen@google.com>2010-09-30 14:15:10 -0700
commitf34bab59fc0260f926aec44d044883dce1b4191f (patch)
tree221a1add2ac33ff3f986434744c4f999edbebfdf /src/com/android/launcher2/Dimmable.java
parent3fb4fc921f1e599c01be68af648d85892cb904c1 (diff)
downloadandroid_packages_apps_Trebuchet-f34bab59fc0260f926aec44d044883dce1b4191f.tar.gz
android_packages_apps_Trebuchet-f34bab59fc0260f926aec44d044883dce1b4191f.tar.bz2
android_packages_apps_Trebuchet-f34bab59fc0260f926aec44d044883dce1b4191f.zip
-Added 3D effect to home screen scrolling
-Added background outline fade in / out -Modified the feel of scrolling: now using quintic interpolator and modified the influence of scroll velocity Change-Id: Ifddcab5223ac20be7d9f800ccf09442d9b4db781 Conflicts: src/com/android/launcher2/CellLayout.java
Diffstat (limited to 'src/com/android/launcher2/Dimmable.java')
-rw-r--r--src/com/android/launcher2/Dimmable.java6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/com/android/launcher2/Dimmable.java b/src/com/android/launcher2/Dimmable.java
new file mode 100644
index 000000000..df43b3c8e
--- /dev/null
+++ b/src/com/android/launcher2/Dimmable.java
@@ -0,0 +1,6 @@
+package com.android.launcher2;
+
+public interface Dimmable {
+ public void setDimmableProgress(float progress);
+ public float getDimmableProgress();
+}