diff options
| -rw-r--r-- | core/java/android/view/ViewRootImpl.java | 3 | ||||
| -rw-r--r-- | core/java/com/android/internal/policy/DecorView.java | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/core/java/android/view/ViewRootImpl.java b/core/java/android/view/ViewRootImpl.java index 7dc4f22000b8..fec99eded1c4 100644 --- a/core/java/android/view/ViewRootImpl.java +++ b/core/java/android/view/ViewRootImpl.java @@ -278,7 +278,8 @@ public final class ViewRootImpl implements ViewParent, * Whether the caption is drawn by the shell. * @hide */ - public static final boolean CAPTION_ON_SHELL = false; + public static final boolean CAPTION_ON_SHELL = + SystemProperties.getBoolean("persist.debug.caption_on_shell", false); /** * Whether the client should compute the window frame on its own. diff --git a/core/java/com/android/internal/policy/DecorView.java b/core/java/com/android/internal/policy/DecorView.java index 89ac72255306..84d52814ea30 100644 --- a/core/java/com/android/internal/policy/DecorView.java +++ b/core/java/com/android/internal/policy/DecorView.java @@ -2261,7 +2261,8 @@ public class DecorView extends FrameLayout implements RootViewSurfaceTaker, Wind attrs.type == TYPE_APPLICATION || attrs.type == TYPE_DRAWN_APPLICATION; final WindowConfiguration winConfig = getResources().getConfiguration().windowConfiguration; // Only a non floating application window on one of the allowed workspaces can get a caption - if (!mWindow.isFloating() && isApplication && winConfig.hasWindowDecorCaption()) { + if (!mWindow.isFloating() && isApplication && winConfig.hasWindowDecorCaption() + && !CAPTION_ON_SHELL) { // Dependent on the brightness of the used title we either use the // dark or the light button frame. if (decorCaptionView == null) { |