From b9a38c57fc47858eb16f4a8b7aa3d3dc9b98166c Mon Sep 17 00:00:00 2001 From: Michael Jurka Date: Thu, 14 Jun 2012 11:57:50 -0700 Subject: Tweak recents launch app animation - Sometimes the black background would flash; changing animation durations to make this much less likely - Fixing issue in Recents where we sometimes forgot to disable drawing caches on views after enabling them --- packages/SystemUI/src/com/android/systemui/recent/RecentsPanelView.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'packages') diff --git a/packages/SystemUI/src/com/android/systemui/recent/RecentsPanelView.java b/packages/SystemUI/src/com/android/systemui/recent/RecentsPanelView.java index bec9aa2..0bdf84a 100644 --- a/packages/SystemUI/src/com/android/systemui/recent/RecentsPanelView.java +++ b/packages/SystemUI/src/com/android/systemui/recent/RecentsPanelView.java @@ -790,7 +790,7 @@ public class RecentsPanelView extends FrameLayout implements OnItemClickListener if (DEBUG) Log.v(TAG, "Starting activity " + intent); context.startActivity(intent, opts.toBundle()); } - if (!usingDrawingCache) { + if (usingDrawingCache) { holder.thumbnailViewImage.setDrawingCacheEnabled(false); } } -- cgit v1.1