diff options
author | 2010-10-11 16:35:48 -0700 | |
---|---|---|
committer | 2010-10-11 16:35:48 -0700 | |
commit | bb60d1e36b4eb72f29a587a8df49679a0f978d15 (patch) | |
tree | c4b40b05b6aa32c0872ce2e7182a1d725d184c98 | |
parent | 0d7349bd92b2dc6c304f6a380a81d4c546ec21c0 (diff) |
Add animation for the status bar going away.
Bug: 3077525
Change-Id: I0c166fc161f8febe963e667259517173b9ac609b
-rw-r--r-- | packages/SystemUI/src/com/android/systemui/statusbar/StatusBarService.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/StatusBarService.java b/packages/SystemUI/src/com/android/systemui/statusbar/StatusBarService.java index 8f3e0fe0bf55..b1c6ad89a2bd 100644 --- a/packages/SystemUI/src/com/android/systemui/statusbar/StatusBarService.java +++ b/packages/SystemUI/src/com/android/systemui/statusbar/StatusBarService.java @@ -336,7 +336,7 @@ public class StatusBarService extends Service implements CommandQueue.Callbacks PixelFormat.RGBX_8888); lp.gravity = Gravity.TOP | Gravity.FILL_HORIZONTAL; lp.setTitle("StatusBar"); - // TODO lp.windowAnimations = R.style.Animation_StatusBar; + lp.windowAnimations = com.android.internal.R.style.Animation_StatusBar; WindowManagerImpl.getDefault().addView(view, lp); } |