diff options
author | Daniel Sandler <dsandler@android.com> | 2012-07-11 10:03:34 -0400 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2012-07-16 09:59:20 -0700 |
commit | ef863701ae20f985439abacd84dceac130804cbc (patch) | |
tree | e9143d0004875aaf48a2839221daba10b4524eb6 /packages/SystemUI/res/values-sw720dp | |
parent | c80aba46749525553de03d2cbdbd03536dd17f30 (diff) | |
download | frameworks_base-ef863701ae20f985439abacd84dceac130804cbc.zip frameworks_base-ef863701ae20f985439abacd84dceac130804cbc.tar.gz frameworks_base-ef863701ae20f985439abacd84dceac130804cbc.tar.bz2 |
Switch to split status/nav bars on all device sizes.
Change-Id: Ie76aa4bdfd76e4a0ffb3949424ab28ef86ec54a1
Diffstat (limited to 'packages/SystemUI/res/values-sw720dp')
-rw-r--r-- | packages/SystemUI/res/values-sw720dp/config.xml | 2 | ||||
-rw-r--r-- | packages/SystemUI/res/values-sw720dp/dimens.xml | 8 | ||||
-rw-r--r-- | packages/SystemUI/res/values-sw720dp/styles.xml | 16 |
3 files changed, 13 insertions, 13 deletions
diff --git a/packages/SystemUI/res/values-sw720dp/config.xml b/packages/SystemUI/res/values-sw720dp/config.xml index 8af700a..de63d9f 100644 --- a/packages/SystemUI/res/values-sw720dp/config.xml +++ b/packages/SystemUI/res/values-sw720dp/config.xml @@ -20,7 +20,7 @@ <!-- These resources are around just to allow their values to be customized for different hardware and product builds. --> <resources> - <integer name="config_maxNotificationIcons">5</integer> + <integer name="status_bar_config_maxNotificationIcons">5</integer> <!-- Whether we're using the tablet-optimized recents interface (we use this value at runtime for some things) --> diff --git a/packages/SystemUI/res/values-sw720dp/dimens.xml b/packages/SystemUI/res/values-sw720dp/dimens.xml index 36cbabf..a61fd68 100644 --- a/packages/SystemUI/res/values-sw720dp/dimens.xml +++ b/packages/SystemUI/res/values-sw720dp/dimens.xml @@ -17,16 +17,16 @@ --> <resources> <!-- size at which Notification icons will be drawn in the status bar --> - <dimen name="status_bar_icon_drawing_size">24dip</dimen> + <dimen name="system_bar_icon_drawing_size">24dip</dimen> <!-- opacity at which Notification icons will be drawn in the status bar --> - <item type="dimen" name="status_bar_icon_drawing_alpha">100%</item> + <item type="dimen" name="system_bar_icon_drawing_alpha">100%</item> <!-- The width of the view containing non-menu status bar icons --> - <dimen name="navigation_key_width">80dip</dimen> + <dimen name="system_bar_navigation_key_width">80dip</dimen> <!-- The width of the view containing the menu status bar icon --> - <dimen name="navigation_menu_key_width">80dip</dimen> + <dimen name="system_bar_navigation_menu_key_width">80dip</dimen> <!-- ======================================== --> <!-- The following resources were recently moved from sw600dp; there may diff --git a/packages/SystemUI/res/values-sw720dp/styles.xml b/packages/SystemUI/res/values-sw720dp/styles.xml index 684258a..e0b1774 100644 --- a/packages/SystemUI/res/values-sw720dp/styles.xml +++ b/packages/SystemUI/res/values-sw720dp/styles.xml @@ -16,12 +16,12 @@ <resources xmlns:android="http://schemas.android.com/apk/res/android"> - <style name="StatusBarNotificationText"> + <style name="SystemBarNotificationText"> <item name="android:textSize">16sp</item> <item name="android:textColor">#ff999999</item> </style> - <style name="StatusBarPanelSettingsRow"> + <style name="SystemBarPanelSettingsRow"> <item name="android:paddingRight">16dp</item> <item name="android:layout_height">64dp</item> <item name="android:layout_width">match_parent</item> @@ -29,13 +29,13 @@ <item name="android:background">?android:attr/listChoiceBackgroundIndicator</item> </style> - <style name="StatusBarPanelSettingsIcon"> + <style name="SystemBarPanelSettingsIcon"> <item name="android:layout_height">match_parent</item> <item name="android:layout_width">64dp</item> <item name="android:scaleType">center</item> </style> - <style name="StatusBarPanelSettingsContents"> + <style name="SystemBarPanelSettingsContents"> <item name="android:layout_height">wrap_content</item> <item name="android:layout_width">0dp</item> <item name="android:layout_weight">1</item> @@ -44,27 +44,27 @@ <item name="android:textSize">18sp</item> </style> - <style name="StatusBarPanelSettingsPanelSeparator"> + <style name="SystemBarPanelSettingsPanelSeparator"> <item name="android:layout_marginRight">0dp</item> <item name="android:layout_width">match_parent</item> <item name="android:layout_height">1dp</item> <item name="android:background">@android:drawable/divider_horizontal_dark</item> </style> - <style name="TextAppearance.StatusBar.Clock" parent="@*android:style/TextAppearance.StatusBar.Icon"> + <style name="TextAppearance.SystemBar.Clock" parent="@*android:style/TextAppearance.StatusBar.Icon"> <item name="android:textSize">30dp</item> <item name="android:textStyle">normal</item> <item name="android:textColor">@android:color/holo_blue_light</item> </style> - <style name="TextAppearance.StatusBar.Expanded.Clock"> + <style name="TextAppearance.SystemBar.Expanded.Clock" parent="@style/TextAppearance.StatusBar.Expanded.Clock"> <item name="android:textSize">48dp</item> <item name="android:fontFamily">sans-serif-light</item> <item name="android:textStyle">normal</item> <item name="android:textColor">#ffffff</item> </style> - <style name="TextAppearance.StatusBar.Expanded.Date"> + <style name="TextAppearance.SystemBar.Expanded.Date" parent="@style/TextAppearance.StatusBar.Expanded.Date"> <item name="android:textSize">14dp</item> <item name="android:textStyle">normal</item> <item name="android:textColor">#666666</item> |