1 <!-- 2 ~ Copyright (C) 2012 The Android Open Source Project 3 ~ 4 ~ Licensed under the Apache License, Version 2.0 (the "License"); 5 ~ you may not use this file except in compliance with the License. 6 ~ You may obtain a copy of the License at 7 ~ 8 ~ http://www.apache.org/licenses/LICENSE-2.0 9 ~ 10 ~ Unless required by applicable law or agreed to in writing, software 11 ~ distributed under the License is distributed on an "AS IS" BASIS, 12 ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 ~ See the License for the specific language governing permissions and 14 ~ limitations under the License 15 --> 16 17 <resources> 18 19 <!-- Padding between the action bar's bottom edge and the first header 20 in contacts/group lists. --> 21 <dimen name="list_header_extra_top_padding">0dip</dimen> 22 23 <!-- Minimum height used with @drawable/list_section_divider_holo_custom. 24 Right now the drawable has implicit 32dip minimal height, which is confusing. 25 This value is for making the hidden configuration explicit in xml. --> 26 <dimen name="list_section_divider_min_height">32dip</dimen> 27 28 <!-- Vertical and horizontal padding in between contact tiles --> 29 <dimen name="contact_tile_divider_padding">1dip</dimen> 30 31 <!-- Left and right padding for a contact detail item --> 32 <dimen name="detail_item_side_margin">16dip</dimen> 33 34 <!-- ContactTile Layouts --> 35 <!-- 36 Use sp instead of dip so that the shadowbox heights can all scale uniformly 37 when the font size is scaled for accessibility purposes 38 --> 39 <dimen name="contact_tile_shadowbox_height">48sp</dimen> 40 41 <!-- Top padding of the ListView in the contact tile list --> 42 <dimen name="contact_tile_list_padding_top">0dip</dimen> 43 44 <!-- For contact filter setting screens --> 45 <dimen name="contact_filter_left_margin">16dip</dimen> 46 <dimen name="contact_filter_right_margin">16dip</dimen> 47 <dimen name="contact_filter_item_min_height">48dip</dimen> 48 <dimen name="contact_filter_icon_size">32dip</dimen> 49 50 <!-- Padding to be used between a visible scrollbar and the contact list --> 51 <dimen name="list_visible_scrollbar_padding">32dip</dimen> 52 53 <dimen name="contact_browser_list_header_left_margin">16dip</dimen> 54 <dimen name="contact_browser_list_header_right_margin">@dimen/list_visible_scrollbar_padding</dimen> 55 <dimen name="contact_browser_list_item_text_indent">8dip</dimen> 56 57 <!-- Size of the shortcut icon. 0dip means: use the system default --> 58 <dimen name="shortcut_icon_size">0dip</dimen> 59 60 <!-- Width of darkened border for shortcut icon --> 61 <dimen name="shortcut_icon_border_width">1dp</dimen> 62 63 <!-- Text size of shortcut icon overlay text --> 64 <dimen name="shortcut_overlay_text_size">12dp</dimen> 65 66 <!-- Extra vertical padding for darkened background behind shortcut icon overlay text --> 67 <dimen name="shortcut_overlay_text_background_padding">1dp</dimen> 68 69 <!-- Width of height of an icon from a third-party app in the networks section of the contact card. --> 70 <dimen name="detail_network_icon_size">32dip</dimen> 71 72 <!-- Empty message margins --> 73 <dimen name="empty_message_top_margin">48dip</dimen> 74 75 <!-- contact browser list margins --> 76 <dimen name="contact_browser_list_item_photo_size">64dip</dimen> 77 <dimen name="contact_browser_list_top_margin">8dip</dimen> 78 79 <!-- Dimensions for "No contacts" string in PhoneFavoriteFragment for the All contacts 80 with phone numbers section 81 --> 82 <dimen name="contact_phone_list_empty_description_size">20sp</dimen> 83 <dimen name="contact_phone_list_empty_description_padding">10dip</dimen> 84 </resources> 85