summaryrefslogtreecommitdiffstats
path: root/src/com/android/launcher2/PagedViewCellLayoutChildren.java
diff options
context:
space:
mode:
authorWinson Chung <winsonc@google.com>2011-06-13 11:32:14 -0700
committerWinson Chung <winsonc@google.com>2011-06-23 11:26:17 -0700
commitb44b52439d155f570db7d6d0b80fdd3350e35685 (patch)
treed07c95c4a43b7bfb1504b1a521e097f238f6eb77 /src/com/android/launcher2/PagedViewCellLayoutChildren.java
parent4b825dcd5f64a5ebb60271844fbc5257374422bc (diff)
downloadandroid_packages_apps_Trebuchet-b44b52439d155f570db7d6d0b80fdd3350e35685.tar.gz
android_packages_apps_Trebuchet-b44b52439d155f570db7d6d0b80fdd3350e35685.tar.bz2
android_packages_apps_Trebuchet-b44b52439d155f570db7d6d0b80fdd3350e35685.zip
Loading previews and holographic icons in background thread using AsyncTasks.
- Adding back animation between tabs Change-Id: I1a49bfca4f85f579e232861aa02d08fb25d0aafc
Diffstat (limited to 'src/com/android/launcher2/PagedViewCellLayoutChildren.java')
-rw-r--r--src/com/android/launcher2/PagedViewCellLayoutChildren.java22
1 files changed, 0 insertions, 22 deletions
diff --git a/src/com/android/launcher2/PagedViewCellLayoutChildren.java b/src/com/android/launcher2/PagedViewCellLayoutChildren.java
index 1afdd03cf..0907c6058 100644
--- a/src/com/android/launcher2/PagedViewCellLayoutChildren.java
+++ b/src/com/android/launcher2/PagedViewCellLayoutChildren.java
@@ -168,26 +168,4 @@ public class PagedViewCellLayoutChildren extends ViewGroup {
}
}
}
-
- public void loadHolographicOutlines() {
- int count = getChildCount();
- for (int i = 0; i < count; i++) {
- View view = getChildAt(i);
- if (view instanceof PagedViewIcon) {
- PagedViewIcon icon = (PagedViewIcon) view;
- icon.loadHolographicIcon();
- }
- }
- }
-
- public void clearHolographicOutlines() {
- int count = getChildCount();
- for (int i = 0; i < count; i++) {
- View view = getChildAt(i);
- if (view instanceof PagedViewIcon) {
- PagedViewIcon icon = (PagedViewIcon) view;
- icon.clearHolographicIcon();
- }
- }
- }
}