Merge "Tweak recents launch app animation" into jb-dev

This commit is contained in:
Michael Jurka
2012-06-14 14:33:55 -07:00
committed by Android (Google) Code Review
2 changed files with 2 additions and 2 deletions

View File

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

View File

@ -3237,7 +3237,7 @@ public class WindowManagerService extends IWindowManager.Stub
if (delayed) {
a = new AlphaAnimation(1, 0);
a.setStartOffset(0);
a.setDuration(delayDuration - 50);
a.setDuration(delayDuration - 120);
a.setBackgroundColor(0xFF000000);
} else {
a = createExitAnimationLocked(transit, duration);