diff options
author | Dianne Hackborn <hackbod@google.com> | 2012-04-12 15:17:07 -0700 |
---|---|---|
committer | Dianne Hackborn <hackbod@google.com> | 2012-04-12 15:26:11 -0700 |
commit | 0c2acffec8689f8721a454845b24a830bc37ce92 (patch) | |
tree | 5c4d68095376aabd3af04c4b7d2d78b9e9ea8c2b /core/java/android/view/WindowManagerPolicy.java | |
parent | ed4995d646252313323f648e44a9539d9384f901 (diff) | |
download | frameworks_base-0c2acffec8689f8721a454845b24a830bc37ce92.zip frameworks_base-0c2acffec8689f8721a454845b24a830bc37ce92.tar.gz frameworks_base-0c2acffec8689f8721a454845b24a830bc37ce92.tar.bz2 |
Clean up lock screen hide animation.
We now have an animation to apply to the thing behind the lock
screen animation when it isn't on the wallpaper, which looks
similar to the animation we use when both are on the wallpaper.
In implementing this, cleaned up the code to figure out up-front
which animation to run, getting rid of that kludgy thing that
cleared the window animation if the wallpaper was not being used
for the lower windows.
Change-Id: Ifc4c8a8894ad384124dcf4bbdaab134f1157b0f3
Diffstat (limited to 'core/java/android/view/WindowManagerPolicy.java')
-rw-r--r-- | core/java/android/view/WindowManagerPolicy.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/java/android/view/WindowManagerPolicy.java b/core/java/android/view/WindowManagerPolicy.java index 66bdc5d..27baaea 100644 --- a/core/java/android/view/WindowManagerPolicy.java +++ b/core/java/android/view/WindowManagerPolicy.java @@ -667,7 +667,7 @@ public interface WindowManagerPolicy { /** * Create and return an animation to re-display a force hidden window. */ - public Animation createForceHideEnterAnimation(); + public Animation createForceHideEnterAnimation(boolean onWallpaper); /** * Called from the input reader thread before a key is enqueued. |