diff options
author | Selim Cinek <cinek@google.com> | 2015-05-07 12:50:19 -0700 |
---|---|---|
committer | Selim Cinek <cinek@google.com> | 2015-05-07 16:54:05 -0700 |
commit | 4a4a2bddc48a33cbaa49a8844b9fd36e2fc5e219 (patch) | |
tree | 7a7e665143d4ff26e4cee020e85f8a372166a088 /core | |
parent | 81e36fe7c21484d8030d9600a330b64e6dd2dbd0 (diff) | |
download | frameworks_base-4a4a2bddc48a33cbaa49a8844b9fd36e2fc5e219.zip frameworks_base-4a4a2bddc48a33cbaa49a8844b9fd36e2fc5e219.tar.gz frameworks_base-4a4a2bddc48a33cbaa49a8844b9fd36e2fc5e219.tar.bz2 |
Fixed a bug where the heads-up would not show when full screen
Bug: 20728541
Change-Id: I74bc74c4936b003a4c0c37b7c7da2d1fa138c077
Diffstat (limited to 'core')
-rw-r--r-- | core/java/android/view/WindowManager.java | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/core/java/android/view/WindowManager.java b/core/java/android/view/WindowManager.java index e983910..2d230e1 100644 --- a/core/java/android/view/WindowManager.java +++ b/core/java/android/view/WindowManager.java @@ -20,7 +20,6 @@ import android.annotation.SystemApi; import android.app.Presentation; import android.content.Context; import android.content.pm.ActivityInfo; -import android.graphics.Insets; import android.graphics.PixelFormat; import android.graphics.Rect; import android.os.IBinder; @@ -1119,6 +1118,15 @@ public interface WindowManager extends ViewManager { public static final int PRIVATE_FLAG_DISABLE_WALLPAPER_TOUCH_EVENTS = 0x00000800; /** + * Flag to force the status bar window to be visible all the time. If the bar is hidden when + * this flag is set it will be shown again and the bar will have a transparent background. + * This can only be set by {@link LayoutParams#TYPE_STATUS_BAR}. + * + * {@hide} + */ + public static final int PRIVATE_FLAG_FORCE_STATUS_BAR_VISIBLE_TRANSPARENT = 0x00001000; + + /** * Control flags that are private to the platform. * @hide */ |