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 <declare-styleable name="Theme"> 19 <attr name="android:textColorSecondary"/> 20 </declare-styleable> 21 22 <declare-styleable name="ContactsDataKind"> 23 <!-- Mime-type handled by this mapping. --> 24 <attr name="android:mimeType"/> 25 <!-- Icon used to represent data of this kind. --> 26 <attr name="android:icon"/> 27 <!-- Column in data table that summarizes this data. --> 28 <attr name="android:summaryColumn"/> 29 <!-- Column in data table that contains details for this data. --> 30 <attr name="android:detailColumn"/> 31 <!-- Flag indicating that detail should be built from SocialProvider. --> 32 <attr name="android:detailSocialSummary"/> 33 <!-- Resource representing the term "All Contacts" (e.g. "All Friends" or 34 "All connections"). Optional (Default is "All Contacts"). --> 35 <attr name="android:allContactsName"/> 36 </declare-styleable> 37 38 <declare-styleable name="ContactListItemView"> 39 <attr format="dimension" name="list_item_height"/> 40 <attr format="dimension" name="list_section_header_height"/> 41 <attr format="reference" name="activated_background"/> 42 <attr format="reference" name="section_header_background"/> 43 <attr format="dimension" name="list_item_padding_top"/> 44 <attr format="dimension" name="list_item_padding_right"/> 45 <attr format="dimension" name="list_item_padding_bottom"/> 46 <attr format="dimension" name="list_item_padding_left"/> 47 <attr format="dimension" name="list_item_gap_between_image_and_text"/> 48 <attr format="dimension" name="list_item_gap_between_label_and_data"/> 49 <attr format="dimension" name="list_item_presence_icon_margin"/> 50 <attr format="dimension" name="list_item_presence_icon_size"/> 51 <attr format="dimension" name="list_item_photo_size"/> 52 <attr format="dimension" name="list_item_profile_photo_size"/> 53 <attr format="color" name="list_item_prefix_highlight_color"/> 54 <attr format="color" name="list_item_background_color"/> 55 <attr format="dimension" name="list_item_header_text_indent"/> 56 <attr format="color" name="list_item_header_text_color"/> 57 <attr format="dimension" name="list_item_header_text_size"/> 58 <attr format="dimension" name="list_item_header_height"/> 59 <attr format="color" name="list_item_name_text_color"/> 60 <attr format="dimension" name="list_item_name_text_size"/> 61 <attr format="dimension" name="list_item_text_indent"/> 62 <attr format="dimension" name="list_item_text_offset_top"/> 63 <attr format="integer" name="list_item_data_width_weight"/> 64 <attr format="integer" name="list_item_label_width_weight"/> 65 <attr format="dimension" name="list_item_video_call_icon_size"/> 66 <attr format="dimension" name="list_item_video_call_icon_margin"/> 67 </declare-styleable> 68 69 <declare-styleable name="ContactBrowser"> 70 <attr format="dimension" name="contact_browser_list_padding_left"/> 71 <attr format="dimension" name="contact_browser_list_padding_right"/> 72 <attr format="reference" name="contact_browser_background"/> 73 </declare-styleable> 74 75 <declare-styleable name="ProportionalLayout"> 76 <attr format="string" name="direction"/> 77 <attr format="float" name="ratio"/> 78 </declare-styleable> 79 80 <declare-styleable name="Favorites"> 81 <attr format="dimension" name="favorites_padding_bottom"/> 82 </declare-styleable> 83 </resources> 84