summaryrefslogtreecommitdiffstats
path: root/packages
diff options
context:
space:
mode:
authorMichael Jurka <mikejurka@google.com>2012-06-14 11:57:50 -0700
committerMichael Jurka <mikejurka@google.com>2012-06-14 11:57:50 -0700
commitb9a38c57fc47858eb16f4a8b7aa3d3dc9b98166c (patch)
tree23954f688842d172aba5ecab9041a1bd66ad2d45 /packages
parentd772c4878e2207795e92b26a462fd02bca7e3c2e (diff)
downloadframeworks_base-b9a38c57fc47858eb16f4a8b7aa3d3dc9b98166c.zip
frameworks_base-b9a38c57fc47858eb16f4a8b7aa3d3dc9b98166c.tar.gz
frameworks_base-b9a38c57fc47858eb16f4a8b7aa3d3dc9b98166c.tar.bz2
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
Diffstat (limited to 'packages')
-rw-r--r--packages/SystemUI/src/com/android/systemui/recent/RecentsPanelView.java2
1 files changed, 1 insertions, 1 deletions
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);
}
}