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 name="list_item_height" format="dimension"/> 40 <attr name="list_section_header_height" format="dimension"/> 41 <attr name="activated_background" format="reference"/> 42 <attr name="section_header_background" format="reference"/> 43 <attr name="list_item_padding_top" format="dimension"/> 44 <attr name="list_item_padding_right" format="dimension"/> 45 <attr name="list_item_padding_bottom" format="dimension"/> 46 <attr name="list_item_padding_left" format="dimension"/> 47 <attr name="list_item_gap_between_image_and_text" format="dimension"/> 48 <attr name="list_item_gap_between_label_and_data" format="dimension"/> 49 <attr name="list_item_presence_icon_margin" format="dimension"/> 50 <attr name="list_item_presence_icon_size" format="dimension"/> 51 <attr name="list_item_photo_size" format="dimension"/> 52 <attr name="list_item_profile_photo_size" format="dimension"/> 53 <attr name="list_item_prefix_highlight_color" format="color"/> 54 <attr name="list_item_background_color" format="color"/> 55 <attr name="list_item_header_text_indent" format="dimension"/> 56 <attr name="list_item_header_text_color" format="color"/> 57 <attr name="list_item_header_text_size" format="dimension"/> 58 <attr name="list_item_header_height" format="dimension"/> 59 <attr name="list_item_name_text_color" format="color"/> 60 <attr name="list_item_name_text_size" format="dimension"/> 61 <attr name="list_item_text_indent" format="dimension"/> 62 <attr name="list_item_text_offset_top" format="dimension"/> 63 <attr name="list_item_data_width_weight" format="integer"/> 64 <attr name="list_item_label_width_weight" format="integer"/> 65 </declare-styleable> 66 67 <declare-styleable name="ContactBrowser"> 68 <attr name="contact_browser_list_padding_left" format="dimension"/> 69 <attr name="contact_browser_list_padding_right" format="dimension"/> 70 <attr name="contact_browser_background" format="reference"/> 71 </declare-styleable> 72 73 <declare-styleable name="ProportionalLayout"> 74 <attr name="direction" format="string"/> 75 <attr name="ratio" format="float"/> 76 </declare-styleable> 77 78 <declare-styleable name="Favorites"> 79 <attr name="favorites_padding_bottom" format="dimension"/> 80 </declare-styleable> 81</resources> 82