1 <?xml version="1.0" encoding="utf-8"?> 2 <!-- 3 * Copyright (c) 2010, The Android Open Source Project 4 * 5 * Licensed under the Apache License, Version 2.0 (the "License"); 6 * you may not use this file except in compliance with the License. 7 * You may obtain a copy of the License at 8 * 9 * http://www.apache.org/licenses/LICENSE-2.0 10 * 11 * Unless required by applicable law or agreed to in writing, software 12 * distributed under the License is distributed on an "AS IS" BASIS, 13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 * See the License for the specific language governing permissions and 15 * limitations under the License. 16 */ 17 --> 18 <resources> 19 <!-- The width of the ticker, including the icon --> 20 <dimen name="notification_ticker_width">360dp</dimen> 21 <!-- Status bar panel bottom offset (height of status bar - overlap) --> 22 <dimen name="status_bar_panel_bottom_offset">36dp</dimen> 23 <!-- gap on either side of status bar notification icons --> 24 <dimen name="status_bar_icon_padding">8dp</dimen> 25 <!-- The width of the notification panel window --> 26 <dimen name="notification_panel_width">512dp</dimen> 27 <!-- The minimum height of the notification panel window --> 28 <dimen name="notification_panel_min_height">770dp</dimen> 29 <!-- Bottom margin (from display edge) for status bar panels --> 30 <dimen name="panel_float">56dp</dimen> 31 32 <!-- Recent Applications parameters --> 33 <!-- How far the thumbnail for a recent app appears from left edge --> 34 <dimen name="status_bar_recents_thumbnail_left_margin">121dp</dimen> 35 <!-- Upper width limit for application icon --> 36 <dimen name="status_bar_recents_app_icon_max_width">64dp</dimen> 37 <!-- Upper height limit for application icon --> 38 <dimen name="status_bar_recents_app_icon_max_height">64dp</dimen> 39 40 <!-- Size of application icon --> 41 <dimen name="status_bar_recents_thumbnail_width">245dp</dimen> 42 <dimen name="status_bar_recents_thumbnail_height">144dp</dimen> 43 44 <!-- Width of recents panel --> 45 <dimen name="status_bar_recents_width">600dp</dimen> 46 <!-- Padding for text descriptions --> 47 <dimen name="status_bar_recents_text_description_padding">8dp</dimen> 48 <!-- Size of application label text --> 49 <dimen name="status_bar_recents_app_label_text_size">18dip</dimen> 50 <!-- Size of application description text --> 51 <dimen name="status_bar_recents_app_description_text_size">18dip</dimen> 52 <!-- Width of application label text --> 53 <dimen name="status_bar_recents_app_label_width">97dip</dimen> 54 <!-- Left margin for application label --> 55 <dimen name="status_bar_recents_app_label_left_margin">16dip</dimen> 56 <!-- Size of fading edge for scroll effect --> 57 <dimen name="status_bar_recents_fading_edge_length">20dip</dimen> 58 <!-- Margin between recents container and glow on the right --> 59 <dimen name="status_bar_recents_right_glow_margin">100dip</dimen> 60 61 <!-- Where to place the app icon over the thumbnail --> 62 <dimen name="status_bar_recents_app_icon_left_margin">13dp</dimen> 63 <dimen name="status_bar_recents_app_icon_top_margin">13dp</dimen> 64 65 <!-- size at which Notification icons will be drawn in the status bar --> 66 <dimen name="status_bar_icon_drawing_size">24dip</dimen> 67 68 <!-- opacity at which Notification icons will be drawn in the status bar --> 69 <item type="dimen" name="status_bar_icon_drawing_alpha">100%</item> 70 </resources> 71