From 3b823cd9e22c805653121b43288ac12e6c06b64c Mon Sep 17 00:00:00 2001 From: Winson Chung Date: Mon, 6 Dec 2010 15:25:00 -0800 Subject: [PATCH] Temporarily disabling holographic outlines until we resolve the various memory issues. Change-Id: If23375fbb7148d0c0572ecde96507de5bdb670ae --- src/com/android/launcher2/PagedViewIcon.java | 2 ++ src/com/android/launcher2/PagedViewWidget.java | 2 ++ 2 files changed, 4 insertions(+) diff --git a/src/com/android/launcher2/PagedViewIcon.java b/src/com/android/launcher2/PagedViewIcon.java index 300bab5f00..fbc67d8a08 100644 --- a/src/com/android/launcher2/PagedViewIcon.java +++ b/src/com/android/launcher2/PagedViewIcon.java @@ -122,12 +122,14 @@ public class PagedViewIcon extends CacheableTextView implements Checkable { } private void queueHolographicOutlineCreation() { + /* Temporarily disabling holographic outline creation. // Generate the outline in the background if (mHolographicOutline == null) { Message m = sWorker.obtainMessage(MESSAGE_CREATE_HOLOGRAPHIC_OUTLINE); m.obj = this; sWorker.sendMessage(m); } + */ } public void applyFromApplicationInfo(ApplicationInfo info, PagedViewIconCache cache, diff --git a/src/com/android/launcher2/PagedViewWidget.java b/src/com/android/launcher2/PagedViewWidget.java index 4d4ccc2d44..89ed0eceea 100644 --- a/src/com/android/launcher2/PagedViewWidget.java +++ b/src/com/android/launcher2/PagedViewWidget.java @@ -120,12 +120,14 @@ public class PagedViewWidget extends LinearLayout { } private void queueHolographicOutlineCreation() { + /* Temporarily disabling holographic outline creation. // Generate the outline in the background if (mHolographicOutline == null) { Message m = sWorker.obtainMessage(MESSAGE_CREATE_HOLOGRAPHIC_OUTLINE); m.obj = this; sWorker.sendMessage(m); } + */ } public void applyFromAppWidgetProviderInfo(AppWidgetProviderInfo info,