Jeff Sharkey | 3f17759 | 2009-05-18 15:23:12 -0700 | [diff] [blame] | 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | <!-- Copyright (C) 2008 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 |
Daniel Lehmann | 2e95ad0 | 2011-07-28 18:30:01 -0700 | [diff] [blame^] | 7 | |
Jeff Sharkey | 3f17759 | 2009-05-18 15:23:12 -0700 | [diff] [blame] | 8 | http://www.apache.org/licenses/LICENSE-2.0 |
Daniel Lehmann | 2e95ad0 | 2011-07-28 18:30:01 -0700 | [diff] [blame^] | 9 | |
Jeff Sharkey | 3f17759 | 2009-05-18 15:23:12 -0700 | [diff] [blame] | 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 | --> |
Jeff Sharkey | 3f17759 | 2009-05-18 15:23:12 -0700 | [diff] [blame] | 16 | <resources> |
| 17 | <!-- Maps a contact kind or mime-type to a RemoteViews XML formatter --> |
| 18 | <declare-styleable name="Mapping"> |
| 19 | <!-- Mime-type handled by this mapping --> |
Dmitri Plotnikov | fc172b0 | 2010-02-23 10:10:17 -0800 | [diff] [blame] | 20 | <attr name="mimeType" format="string"/> |
Jeff Sharkey | 3f17759 | 2009-05-18 15:23:12 -0700 | [diff] [blame] | 21 | <!-- RemoteViews XML that should be used to format this data --> |
Dmitri Plotnikov | fc172b0 | 2010-02-23 10:10:17 -0800 | [diff] [blame] | 22 | <attr name="remoteViews" format="reference"/> |
Jeff Sharkey | 3f17759 | 2009-05-18 15:23:12 -0700 | [diff] [blame] | 23 | <!-- Icon that should be used to represent this data --> |
Dmitri Plotnikov | fc172b0 | 2010-02-23 10:10:17 -0800 | [diff] [blame] | 24 | <attr name="icon" format="reference"/> |
Jeff Sharkey | 549aa16 | 2009-05-21 01:33:30 -0700 | [diff] [blame] | 25 | <!-- Column in data table to summarize this data --> |
Dmitri Plotnikov | fc172b0 | 2010-02-23 10:10:17 -0800 | [diff] [blame] | 26 | <attr name="summaryColumn" format="string"/> |
Jeff Sharkey | 3926127 | 2009-06-03 19:15:09 -0700 | [diff] [blame] | 27 | <!-- Column in data table to show details of this data --> |
Dmitri Plotnikov | fc172b0 | 2010-02-23 10:10:17 -0800 | [diff] [blame] | 28 | <attr name="detailColumn" format="string"/> |
Jeff Sharkey | 3f17759 | 2009-05-18 15:23:12 -0700 | [diff] [blame] | 29 | </declare-styleable> |
| 30 | |
| 31 | <declare-styleable name="EdgeTriggerView"> |
Dmitri Plotnikov | fc172b0 | 2010-02-23 10:10:17 -0800 | [diff] [blame] | 32 | <attr name="edgeWidth" format="dimension"/> |
Jeff Sharkey | 3f17759 | 2009-05-18 15:23:12 -0700 | [diff] [blame] | 33 | <attr name="listenEdges"> |
Dmitri Plotnikov | fc172b0 | 2010-02-23 10:10:17 -0800 | [diff] [blame] | 34 | <flag name="left" value="0x01"/> |
| 35 | <flag name="right" value="0x02"/> |
Jeff Sharkey | 3f17759 | 2009-05-18 15:23:12 -0700 | [diff] [blame] | 36 | </attr> |
| 37 | </declare-styleable> |
| 38 | |
Daniel Lehmann | 2e95ad0 | 2011-07-28 18:30:01 -0700 | [diff] [blame^] | 39 | <declare-styleable name="InterpolatingLayout_Layout"> |
| 40 | <attr name="layout_narrowParentWidth" format="dimension"/> |
| 41 | <attr name="layout_narrowWidth" format="dimension"/> |
| 42 | <attr name="layout_narrowMarginLeft" format="dimension"/> |
| 43 | <attr name="layout_narrowMarginRight" format="dimension"/> |
| 44 | <attr name="layout_narrowPaddingLeft" format="dimension"/> |
| 45 | <attr name="layout_narrowPaddingRight" format="dimension"/> |
| 46 | <attr name="layout_wideParentWidth" format="dimension"/> |
| 47 | <attr name="layout_wideWidth" format="dimension"/> |
| 48 | <attr name="layout_wideMarginLeft" format="dimension"/> |
| 49 | <attr name="layout_wideMarginRight" format="dimension"/> |
| 50 | <attr name="layout_widePaddingLeft" format="dimension"/> |
| 51 | <attr name="layout_widePaddingRight" format="dimension"/> |
| 52 | </declare-styleable> |
| 53 | |
| 54 | <declare-styleable name="ProportionalLayout"> |
| 55 | <attr name="direction" format="string"/> |
| 56 | <attr name="ratio" format="float"/> |
| 57 | </declare-styleable> |
| 58 | |
| 59 | <declare-styleable name="TransitionAnimationView"> |
| 60 | <attr name="clipMarginLeft" format="dimension"/> |
| 61 | <attr name="clipMarginRight" format="dimension"/> |
| 62 | <attr name="clipMarginTop" format="dimension"/> |
| 63 | <attr name="clipMarginBottom" format="dimension"/> |
| 64 | <attr name="enterAnimation" format="reference"/> |
| 65 | <attr name="exitAnimation" format="reference"/> |
| 66 | <attr name="animationDuration" format="integer"/> |
| 67 | </declare-styleable> |
| 68 | |
| 69 | <declare-styleable name="ContactBrowser"> |
| 70 | <attr name="contact_filter_popup_width" format="dimension"/> |
| 71 | </declare-styleable> |
| 72 | |
| 73 | <declare-styleable name="ContactListItemView"> |
| 74 | <attr name="list_item_height" format="dimension"/> |
| 75 | <attr name="list_section_header_height" format="dimension"/> |
| 76 | <attr name="activated_background" format="reference"/> |
| 77 | <attr name="section_header_background" format="reference"/> |
| 78 | <attr name="list_item_divider" format="reference"/> |
| 79 | <attr name="list_item_padding_top" format="dimension"/> |
| 80 | <attr name="list_item_padding_right" format="dimension"/> |
| 81 | <attr name="list_item_padding_bottom" format="dimension"/> |
| 82 | <attr name="list_item_padding_left" format="dimension"/> |
| 83 | <attr name="list_item_gap_between_image_and_text" format="dimension"/> |
| 84 | <attr name="list_item_gap_between_label_and_data" format="dimension"/> |
| 85 | <attr name="list_item_call_button_padding" format="dimension"/> |
| 86 | <attr name="list_item_vertical_divider_margin" format="dimension"/> |
| 87 | <attr name="list_item_presence_icon_margin" format="dimension"/> |
| 88 | <attr name="list_item_presence_icon_size" format="dimension"/> |
| 89 | <attr name="list_item_photo_size" format="dimension"/> |
| 90 | <attr name="list_item_profile_photo_size" format="dimension"/> |
| 91 | <attr name="list_item_prefix_highlight_color" format="color"/> |
| 92 | <attr name="list_item_header_text_indent" format="dimension" /> |
| 93 | <attr name="list_item_header_text_color" format="color" /> |
| 94 | <attr name="list_item_header_text_size" format="dimension" /> |
| 95 | <attr name="list_item_header_height" format="dimension" /> |
| 96 | <attr name="list_item_header_underline_height" format="dimension" /> |
| 97 | <attr name="list_item_header_underline_color" format="color" /> |
| 98 | </declare-styleable> |
| 99 | |
| 100 | <declare-styleable name="CallDetailActivity"> |
| 101 | <attr name="call_detail_transparent_background" format="color" /> |
| 102 | <attr name="call_detail_contact_background_overlay_alpha" format="float" /> |
| 103 | </declare-styleable> |
| 104 | |
| 105 | <declare-styleable name="CallLog"> |
| 106 | <attr name="call_log_primary_text_color" format="color" /> |
| 107 | <attr name="call_log_primary_background_color" format="color" /> |
| 108 | <attr name="call_log_secondary_text_color" format="color" /> |
| 109 | <attr name="call_log_secondary_background_color" format="color" /> |
| 110 | <attr name="call_log_header_color" format="color" /> |
| 111 | </declare-styleable> |
| 112 | |
| 113 | <declare-styleable name="VoicemailStatus"> |
| 114 | <attr name="call_log_voicemail_status_height" format="dimension" /> |
| 115 | <attr name="call_log_voicemail_status_background_color" format="color" /> |
| 116 | <attr name="call_log_voicemail_status_text_color" format="color" /> |
| 117 | </declare-styleable> |
| 118 | |
| 119 | <declare-styleable name="Favorites"> |
| 120 | <attr name="favorites_padding_bottom" format="dimension" /> |
| 121 | </declare-styleable> |
Jeff Sharkey | 3f17759 | 2009-05-18 15:23:12 -0700 | [diff] [blame] | 122 | </resources> |