diff options
author | Joe Onorato <joeo@google.com> | 2011-05-25 17:35:35 -0700 |
---|---|---|
committer | Joe Onorato <joeo@google.com> | 2011-05-25 17:35:35 -0700 |
commit | 07949e908295d0857183830d48c84cb75ac4ff8b (patch) | |
tree | 04487c7dc2d296bc1a76b2d230752b85e863d3cd /packages/SystemUI/res/values-sw600dp | |
parent | c6318a83b3bda55093243dfa1ac0dbac3417753f (diff) | |
download | frameworks_base-07949e908295d0857183830d48c84cb75ac4ff8b.zip frameworks_base-07949e908295d0857183830d48c84cb75ac4ff8b.tar.gz frameworks_base-07949e908295d0857183830d48c84cb75ac4ff8b.tar.bz2 |
Move status bar icons to sw600.
Change-Id: Idb85252b30cca90704f1cfebb7abce522e21b8a3
Diffstat (limited to 'packages/SystemUI/res/values-sw600dp')
-rw-r--r-- | packages/SystemUI/res/values-sw600dp/colors.xml | 6 | ||||
-rw-r--r-- | packages/SystemUI/res/values-sw600dp/dimens.xml | 30 |
2 files changed, 36 insertions, 0 deletions
diff --git a/packages/SystemUI/res/values-sw600dp/colors.xml b/packages/SystemUI/res/values-sw600dp/colors.xml new file mode 100644 index 0000000..a7a70c3 --- /dev/null +++ b/packages/SystemUI/res/values-sw600dp/colors.xml @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <drawable name="status_bar_background">#000000</drawable> + <drawable name="notification_icon_area_smoke">#aa000000</drawable> +</resources> + diff --git a/packages/SystemUI/res/values-sw600dp/dimens.xml b/packages/SystemUI/res/values-sw600dp/dimens.xml new file mode 100644 index 0000000..dec8b67 --- /dev/null +++ b/packages/SystemUI/res/values-sw600dp/dimens.xml @@ -0,0 +1,30 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + * Copyright (c) 2010, The Android Open Source Project + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. +*/ +--> +<resources> + <!-- The width of the ticker, including the icon --> + <dimen name="notification_ticker_width">360dp</dimen> + <!-- Status bar panel bottom offset (height of status bar - overlap) --> + <dimen name="status_bar_panel_bottom_offset">36dp</dimen> + <!-- gap on either side of status bar notification icons --> + <dimen name="status_bar_icon_padding">8dp</dimen> + <!-- The width of the notification panel window --> + <dimen name="notification_panel_width">512dp</dimen> + <!-- The minimum height of the notification panel window --> + <dimen name="notification_panel_min_height">770dp</dimen> +</resources> + |