diff options
| author | 2012-10-03 17:03:15 -0400 | |
|---|---|---|
| committer | 2012-10-03 17:03:15 -0400 | |
| commit | 85db803e7c6baf3b596bf366f71d3bcd08879fc4 (patch) | |
| tree | 03c688566f2f85647c65b6e054ab4f55d7131d6a | |
| parent | daab6af91d4e0f7bd13679f01a982dbe57c88bf0 (diff) | |
hide the redundant clock when the notification shade is open.
Bug: 7204705
Change-Id: I88ef58938c5e96c4828dbda5d93f9874535b212f
| -rw-r--r-- | packages/SystemUI/src/com/android/systemui/statusbar/phone/PhoneStatusBar.java | 4 | 
1 files changed, 3 insertions, 1 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/phone/PhoneStatusBar.java b/packages/SystemUI/src/com/android/systemui/statusbar/phone/PhoneStatusBar.java index 12e749dc5ba0..ea3727f24b01 100644 --- a/packages/SystemUI/src/com/android/systemui/statusbar/phone/PhoneStatusBar.java +++ b/packages/SystemUI/src/com/android/systemui/statusbar/phone/PhoneStatusBar.java @@ -314,7 +314,9 @@ public class PhoneStatusBar extends BaseStatusBar {          mNotificationPanelIsFullScreenWidth =              (mNotificationPanel.getLayoutParams().width == ViewGroup.LayoutParams.MATCH_PARENT);          mNotificationPanel.setSystemUiVisibility( -                  View.STATUS_BAR_DISABLE_NOTIFICATION_TICKER | View.STATUS_BAR_DISABLE_NOTIFICATION_ICONS); +                  View.STATUS_BAR_DISABLE_NOTIFICATION_TICKER | +                  View.STATUS_BAR_DISABLE_NOTIFICATION_ICONS | +                  View.STATUS_BAR_DISABLE_CLOCK);          if (!ActivityManager.isHighEndGfx()) {              mStatusBarWindow.setBackground(null);  |