diff options
author | John Spurlock <jspurlock@google.com> | 2013-10-08 12:54:35 -0400 |
---|---|---|
committer | John Spurlock <jspurlock@google.com> | 2013-10-08 12:54:35 -0400 |
commit | 7f4820ae4ece1689656802a44642930fc69b2d69 (patch) | |
tree | 04e5de4c97cb9d2eacadc38a23079c44bdb929bb /policy/src | |
parent | be5ba9a255e258e03925bb651e5563625ddf6d59 (diff) | |
download | frameworks_base-7f4820ae4ece1689656802a44642930fc69b2d69.zip frameworks_base-7f4820ae4ece1689656802a44642930fc69b2d69.tar.gz frameworks_base-7f4820ae4ece1689656802a44642930fc69b2d69.tar.bz2 |
Translucent sysui flags affect layout.
Recently removed when they went private, but that was wrong:
they still affect layout.
Bug:11128955
Change-Id: Ic94230732a6b2ff3dcaa79b03e181a4e46585902
Diffstat (limited to 'policy/src')
-rw-r--r-- | policy/src/com/android/internal/policy/impl/PhoneWindowManager.java | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/policy/src/com/android/internal/policy/impl/PhoneWindowManager.java b/policy/src/com/android/internal/policy/impl/PhoneWindowManager.java index 3468425..9beeba6 100644 --- a/policy/src/com/android/internal/policy/impl/PhoneWindowManager.java +++ b/policy/src/com/android/internal/policy/impl/PhoneWindowManager.java @@ -163,7 +163,9 @@ public class PhoneWindowManager implements WindowManagerPolicy { */ static final int SYSTEM_UI_CHANGING_LAYOUT = View.SYSTEM_UI_FLAG_HIDE_NAVIGATION - | View.SYSTEM_UI_FLAG_FULLSCREEN; + | View.SYSTEM_UI_FLAG_FULLSCREEN + | View.STATUS_BAR_TRANSLUCENT + | View.NAVIGATION_BAR_TRANSLUCENT; /** * Keyguard stuff |