Merge "Consistently re-enabling the wallpaper when we leave launcher. (Bug 6445085)" into jb-dev

This commit is contained in:
Winson Chung
2012-05-07 15:40:54 -07:00
committed by Android (Google) Code Review
2 changed files with 5 additions and 4 deletions
@@ -524,10 +524,6 @@ public class AppsCustomizePagedView extends PagedViewWithDraggableItems implemen
mPressedIcon.lockDrawableState();
}
// NOTE: we need to re-enable the wallpaper visibility if we want correct transitions
// between items that are launched from the workspace and all apps. It will be disabled
// correctly the next time the window is visible in AppsCustomizeTabHost.
mLauncher.updateWallpaperVisibility(true);
mLauncher.startActivitySafely(v, appInfo.intent, appInfo);
} else if (v instanceof PagedViewWidget) {
+5
View File
@@ -665,6 +665,11 @@ public final class Launcher extends Activity
@Override
protected void onPause() {
// NOTE: We want all transitions from launcher to act as if the wallpaper were enabled
// to be consistent. So re-enable the flag here, and we will re-disable it as necessary
// when Launcher resumes and we are still in AllApps.
updateWallpaperVisibility(true);
super.onPause();
mPaused = true;
mDragController.cancelDrag();