diff options
author | John Spurlock <jspurlock@google.com> | 2014-08-07 03:55:07 +0000 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2014-08-05 00:35:13 +0000 |
commit | 3f14df5c9df0028f78d930d03d512d969236f0bc (patch) | |
tree | 207eb819cc5119ceec1eed92770ae9a9f939bc09 /packages/SystemUI/res/values-sw600dp | |
parent | 8f333f19222ac9415152e31f10e0df2b571b0b77 (diff) | |
parent | 7e6809ad643fa4a70cfb647191731c68f07789cd (diff) | |
download | frameworks_base-3f14df5c9df0028f78d930d03d512d969236f0bc.zip frameworks_base-3f14df5c9df0028f78d930d03d512d969236f0bc.tar.gz frameworks_base-3f14df5c9df0028f78d930d03d512d969236f0bc.tar.bz2 |
Merge "Common shade width across devices." into lmp-dev
Diffstat (limited to 'packages/SystemUI/res/values-sw600dp')
-rw-r--r-- | packages/SystemUI/res/values-sw600dp/config.xml | 3 | ||||
-rw-r--r-- | packages/SystemUI/res/values-sw600dp/dimens.xml | 12 | ||||
-rw-r--r-- | packages/SystemUI/res/values-sw600dp/styles.xml | 11 |
3 files changed, 3 insertions, 23 deletions
diff --git a/packages/SystemUI/res/values-sw600dp/config.xml b/packages/SystemUI/res/values-sw600dp/config.xml index 9f4c364..4f6d209 100644 --- a/packages/SystemUI/res/values-sw600dp/config.xml +++ b/packages/SystemUI/res/values-sw600dp/config.xml @@ -20,9 +20,6 @@ <!-- These resources are around just to allow their values to be customized for different hardware and product builds. --> <resources> - <!-- The number of columns in the QuickSettings --> - <integer name="quick_settings_num_columns">4</integer> - <!-- The maximum number of rows in the QuickSettings --> <integer name="quick_settings_max_rows">4</integer> diff --git a/packages/SystemUI/res/values-sw600dp/dimens.xml b/packages/SystemUI/res/values-sw600dp/dimens.xml index 6beccc5..2d82d6e 100644 --- a/packages/SystemUI/res/values-sw600dp/dimens.xml +++ b/packages/SystemUI/res/values-sw600dp/dimens.xml @@ -16,12 +16,9 @@ */ --> <resources> - <!-- The width of the notification panel window: 400 + 16 + 16 (padding in the bg drawable) --> - <dimen name="notification_panel_width">432dp</dimen> - - <!-- Gravity for the notification panel --> - <!-- 0x31 = top|center_horizontal --> - <integer name="notification_panel_layout_gravity">0x31</integer> + <!-- 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> @@ -49,9 +46,6 @@ <!-- The side padding for the task stack as a percentage of the width. --> <item name="recents_stack_width_padding_percentage" format="float" type="dimen">0.075</item> - <!-- Width of the zen mode interstitial dialog. --> - <dimen name="zen_mode_dialog_width">384dp</dimen> - <!-- The fraction of the screen height where the clock on the Keyguard has its center. The max value is used when no notifications are displaying, and the min value is when the highest possible number of notifications are showing. --> diff --git a/packages/SystemUI/res/values-sw600dp/styles.xml b/packages/SystemUI/res/values-sw600dp/styles.xml index 88372bc..5daf08e 100644 --- a/packages/SystemUI/res/values-sw600dp/styles.xml +++ b/packages/SystemUI/res/values-sw600dp/styles.xml @@ -19,17 +19,6 @@ <item name="android:layout_width">480dp</item> </style> - <style name="NotificationsQuickSettings"> - <item name="android:layout_width">@dimen/notification_panel_width</item> - <item name="android:layout_height">match_parent</item> - <item name="android:layout_gravity">top|center_horizontal</item> - </style> - - <style name="StatusBarHeader"> - <item name="android:layout_width">@dimen/notification_panel_width</item> - <item name="android:layout_gravity">center_horizontal</item> - </style> - <style name="SearchPanelCard"> <item name="android:layout_width">550dp</item> <item name="android:layout_height">@dimen/search_panel_card_height</item> |