diff options
author | Daniel Sandler <dsandler@android.com> | 2010-06-23 10:31:21 -0700 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2010-06-23 10:31:21 -0700 |
commit | 6c55b8b143b4cc8335789bff58a2ac545bd58806 (patch) | |
tree | 79abb0be812a442de71068ca64d545367ea6517f /core/java/android/view | |
parent | b09448e0a84a57bd15ea556f8bef27964128032a (diff) | |
parent | 71764c4ce5b248a79542238b171a783e82e0fe37 (diff) | |
download | frameworks_base-6c55b8b143b4cc8335789bff58a2ac545bd58806.zip frameworks_base-6c55b8b143b4cc8335789bff58a2ac545bd58806.tar.gz frameworks_base-6c55b8b143b4cc8335789bff58a2ac545bd58806.tar.bz2 |
am 71764c4c: am 613dde4a: Revised "immersive mode" API.
Merge commit '71764c4ce5b248a79542238b171a783e82e0fe37'
* commit '71764c4ce5b248a79542238b171a783e82e0fe37':
Revised "immersive mode" API.
Diffstat (limited to 'core/java/android/view')
-rw-r--r-- | core/java/android/view/WindowManager.java | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/core/java/android/view/WindowManager.java b/core/java/android/view/WindowManager.java index e3ed91e..eebbc93 100644 --- a/core/java/android/view/WindowManager.java +++ b/core/java/android/view/WindowManager.java @@ -584,19 +584,6 @@ public interface WindowManager extends ViewManager { */ public static final int FLAG_DISMISS_KEYGUARD = 0x00400000; - /** Window flag: This window corresponds to an immersive activity - * that wishes not to be interrupted with notifications. In general, - * applications may simply hide the status bar with - * {@link #FLAG_FULLSCREEN} to suppress most notifications, but will - * still be interrupted by those with - * {@link android.app.Notification#fullScreenIntent fullScreenIntent} - * set (example: an incoming call). Setting {@link #FLAG_IMMERSIVE} - * will suppress the full-screen intent and show the status bar - * briefly for those important notifications instead. - * {@see android.app.Notification#FLAG_HIGH_PRIORITY} - */ - public static final int FLAG_IMMERSIVE = 0x00800000; - /** Window flag: *sigh* The lock screen wants to continue running its * animation while it is fading. A kind-of hack to allow this. Maybe * in the future we just make this the default behavior. |