Loading previews and holographic icons in background thread using AsyncTasks.

- Adding back animation between tabs

Change-Id: I1a49bfca4f85f579e232861aa02d08fb25d0aafc
This commit is contained in:
Winson Chung
2011-06-13 11:32:14 -07:00
parent 4b825dcd5f
commit b44b52439d
10 changed files with 449 additions and 358 deletions

View File

@@ -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();
}
}
}
}