Loading packages/SystemUI/res/values-land/dimens.xml +0 −3 Original line number Diff line number Diff line Loading @@ -19,9 +19,6 @@ <!-- thickness (width) of the navigation bar on phones that require it --> <dimen name="navigation_bar_size">@*android:dimen/navigation_bar_width</dimen> <!-- Standard notification gravity --> <integer name="notification_panel_layout_gravity">@integer/standard_notification_panel_layout_gravity</integer> <dimen name="docked_divider_handle_width">2dp</dimen> <dimen name="docked_divider_handle_height">16dp</dimen> Loading packages/SystemUI/res/values-sw600dp/dimens.xml +0 −1 Original line number Diff line number Diff line Loading @@ -18,7 +18,6 @@ <resources> <!-- Standard notification width + gravity --> <dimen name="notification_panel_width">@dimen/standard_notification_panel_width</dimen> <integer name="notification_panel_layout_gravity">@integer/standard_notification_panel_layout_gravity</integer> <!-- Diameter of outer shape drawable shown in navbar search--> <dimen name="navbar_search_outerring_diameter">430dip</dimen> Loading packages/SystemUI/res/values/dimens.xml +1 −2 Original line number Diff line number Diff line Loading @@ -201,8 +201,7 @@ <dimen name="volume_dialog_panel_width">@dimen/standard_notification_panel_width</dimen> <!-- Gravity for the notification panel --> <integer name="standard_notification_panel_layout_gravity">0x31</integer><!-- top|center_horizontal --> <integer name="notification_panel_layout_gravity">0x37</integer><!-- fill_horizontal|top --> <integer name="notification_panel_layout_gravity">0x31</integer><!-- center_horizontal|top --> <!-- Height of the carrier/wifi name label --> <dimen name="carrier_label_height">24dp</dimen> Loading packages/SystemUI/src/com/android/systemui/statusbar/phone/NotificationPanelView.java +2 −2 Original line number Diff line number Diff line Loading @@ -292,7 +292,7 @@ public class NotificationPanelView extends PanelView implements int panelGravity = getResources().getInteger(R.integer.notification_panel_layout_gravity); FrameLayout.LayoutParams lp = (FrameLayout.LayoutParams) mQsFrame.getLayoutParams(); if (lp.width != panelWidth) { if (lp.width != panelWidth || lp.gravity != panelGravity) { lp.width = panelWidth; lp.gravity = panelGravity; mQsFrame.setLayoutParams(lp); Loading @@ -300,7 +300,7 @@ public class NotificationPanelView extends PanelView implements } lp = (FrameLayout.LayoutParams) mNotificationStackScroller.getLayoutParams(); if (lp.width != panelWidth) { if (lp.width != panelWidth || lp.gravity != panelGravity) { lp.width = panelWidth; lp.gravity = panelGravity; mNotificationStackScroller.setLayoutParams(lp); Loading Loading
packages/SystemUI/res/values-land/dimens.xml +0 −3 Original line number Diff line number Diff line Loading @@ -19,9 +19,6 @@ <!-- thickness (width) of the navigation bar on phones that require it --> <dimen name="navigation_bar_size">@*android:dimen/navigation_bar_width</dimen> <!-- Standard notification gravity --> <integer name="notification_panel_layout_gravity">@integer/standard_notification_panel_layout_gravity</integer> <dimen name="docked_divider_handle_width">2dp</dimen> <dimen name="docked_divider_handle_height">16dp</dimen> Loading
packages/SystemUI/res/values-sw600dp/dimens.xml +0 −1 Original line number Diff line number Diff line Loading @@ -18,7 +18,6 @@ <resources> <!-- Standard notification width + gravity --> <dimen name="notification_panel_width">@dimen/standard_notification_panel_width</dimen> <integer name="notification_panel_layout_gravity">@integer/standard_notification_panel_layout_gravity</integer> <!-- Diameter of outer shape drawable shown in navbar search--> <dimen name="navbar_search_outerring_diameter">430dip</dimen> Loading
packages/SystemUI/res/values/dimens.xml +1 −2 Original line number Diff line number Diff line Loading @@ -201,8 +201,7 @@ <dimen name="volume_dialog_panel_width">@dimen/standard_notification_panel_width</dimen> <!-- Gravity for the notification panel --> <integer name="standard_notification_panel_layout_gravity">0x31</integer><!-- top|center_horizontal --> <integer name="notification_panel_layout_gravity">0x37</integer><!-- fill_horizontal|top --> <integer name="notification_panel_layout_gravity">0x31</integer><!-- center_horizontal|top --> <!-- Height of the carrier/wifi name label --> <dimen name="carrier_label_height">24dp</dimen> Loading
packages/SystemUI/src/com/android/systemui/statusbar/phone/NotificationPanelView.java +2 −2 Original line number Diff line number Diff line Loading @@ -292,7 +292,7 @@ public class NotificationPanelView extends PanelView implements int panelGravity = getResources().getInteger(R.integer.notification_panel_layout_gravity); FrameLayout.LayoutParams lp = (FrameLayout.LayoutParams) mQsFrame.getLayoutParams(); if (lp.width != panelWidth) { if (lp.width != panelWidth || lp.gravity != panelGravity) { lp.width = panelWidth; lp.gravity = panelGravity; mQsFrame.setLayoutParams(lp); Loading @@ -300,7 +300,7 @@ public class NotificationPanelView extends PanelView implements } lp = (FrameLayout.LayoutParams) mNotificationStackScroller.getLayoutParams(); if (lp.width != panelWidth) { if (lp.width != panelWidth || lp.gravity != panelGravity) { lp.width = panelWidth; lp.gravity = panelGravity; mNotificationStackScroller.setLayoutParams(lp); Loading