Skip to content

Commit 85db803

Browse files
committed
hide the redundant clock when the notification shade is open.
Bug: 7204705 Change-Id: I88ef58938c5e96c4828dbda5d93f9874535b212f
1 parent daab6af commit 85db803

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

packages/SystemUI/src/com/android/systemui/statusbar/phone/PhoneStatusBar.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -314,7 +314,9 @@ public boolean onTouch(View v, MotionEvent event) {
314314
mNotificationPanelIsFullScreenWidth =
315315
(mNotificationPanel.getLayoutParams().width == ViewGroup.LayoutParams.MATCH_PARENT);
316316
mNotificationPanel.setSystemUiVisibility(
317-
View.STATUS_BAR_DISABLE_NOTIFICATION_TICKER | View.STATUS_BAR_DISABLE_NOTIFICATION_ICONS);
317+
View.STATUS_BAR_DISABLE_NOTIFICATION_TICKER |
318+
View.STATUS_BAR_DISABLE_NOTIFICATION_ICONS |
319+
View.STATUS_BAR_DISABLE_CLOCK);
318320

319321
if (!ActivityManager.isHighEndGfx()) {
320322
mStatusBarWindow.setBackground(null);

0 commit comments

Comments
 (0)