diff options
| author | Priyank Singh <priyanksingh@google.com> | 2019-09-11 19:11:00 -0700 |
|---|---|---|
| committer | android-build-merger <android-build-merger@google.com> | 2019-09-11 19:11:00 -0700 |
| commit | 27b1e76d5425e851be3bb7111ac8f77ed99041fc (patch) | |
| tree | 8a13cc5c82b8ee7dc9b1bc7dfb17438824257367 /core/java | |
| parent | 31d2ec103d108d1ad6e65511d127d824badf2938 (diff) | |
| parent | 3228b57d8e25a579ef8156342b039a12a276b464 (diff) | |
Status bar background color should not be transparent.
am: 3228b57d8e
Change-Id: I3d9c3fd7a691ca9a27be059ff447c2b58760b985
Diffstat (limited to 'core/java')
| -rw-r--r-- | core/java/android/view/WindowManager.java | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/core/java/android/view/WindowManager.java b/core/java/android/view/WindowManager.java index 2e5a7501f898..36fea589da99 100644 --- a/core/java/android/view/WindowManager.java +++ b/core/java/android/view/WindowManager.java @@ -1473,6 +1473,9 @@ public interface WindowManager extends ViewManager { * <p>When this flag is enabled for a window, it automatically sets * the system UI visibility flags {@link View#SYSTEM_UI_FLAG_LAYOUT_STABLE} and * {@link View#SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN}.</p> + * + * <p>Note: For devices that support + * {@link android.content.pm.PackageManager#FEATURE_AUTOMOTIVE} this flag may be ignored. */ public static final int FLAG_TRANSLUCENT_STATUS = 0x04000000; @@ -1492,6 +1495,10 @@ public interface WindowManager extends ViewManager { * <p>When this flag is enabled for a window, it automatically sets * the system UI visibility flags {@link View#SYSTEM_UI_FLAG_LAYOUT_STABLE} and * {@link View#SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION}.</p> + * + * <p>Note: For devices that support + * {@link android.content.pm.PackageManager#FEATURE_AUTOMOTIVE} this flag can be disabled + * by the car manufacturers. */ public static final int FLAG_TRANSLUCENT_NAVIGATION = 0x08000000; |
