diff options
author | Selim Cinek <cinek@google.com> | 2015-05-08 02:04:51 +0000 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2015-05-08 02:04:52 +0000 |
commit | 03fdca1b29aff07583b7764b7b359cbbfc58e577 (patch) | |
tree | afff737e489e01729c6625d763afe713b05d896c /core | |
parent | 1f8619974806d1c461b57ab232c50f1845d4d433 (diff) | |
parent | 4a4a2bddc48a33cbaa49a8844b9fd36e2fc5e219 (diff) | |
download | frameworks_base-03fdca1b29aff07583b7764b7b359cbbfc58e577.zip frameworks_base-03fdca1b29aff07583b7764b7b359cbbfc58e577.tar.gz frameworks_base-03fdca1b29aff07583b7764b7b359cbbfc58e577.tar.bz2 |
Merge "Fixed a bug where the heads-up would not show when full screen" into mnc-dev
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 e6c6b12..2797b6e 100644 --- a/core/java/android/view/WindowManager.java +++ b/core/java/android/view/WindowManager.java @@ -21,7 +21,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; @@ -1120,6 +1119,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 */ |