The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | <!-- Copyright (C) 2009 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 |
Nicolas Catania | 177d88f | 2009-09-27 15:15:05 -0700 | [diff] [blame] | 7 | |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 8 | http://www.apache.org/licenses/LICENSE-2.0 |
Nicolas Catania | 177d88f | 2009-09-27 15:15:05 -0700 | [diff] [blame] | 9 | |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [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 | --> |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 16 | <resources> |
Daniel Lehmann | 2028eb0 | 2011-04-07 21:04:48 -0700 | [diff] [blame] | 17 | <style name="DialtactsTheme" parent="android:Theme.Holo.Light"> |
Nicolas Catania | 177d88f | 2009-09-27 15:15:05 -0700 | [diff] [blame] | 18 | <item name="android:windowNoTitle">true</item> |
| 19 | <item name="android:windowContentOverlay">@null</item> |
| 20 | </style> |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 21 | |
Daniel Lehmann | 2028eb0 | 2011-04-07 21:04:48 -0700 | [diff] [blame] | 22 | <style name="CallDetailActivityTheme" parent="android:Theme.Holo.Light"> |
Daniel Lehmann | 134e53f | 2010-08-25 14:21:51 -0700 | [diff] [blame] | 23 | <item name="android:windowContentOverlay">@null</item> |
| 24 | </style> |
Daniel Lehmann | c669d26 | 2011-03-16 18:53:59 -0700 | [diff] [blame] | 25 | <style name="ContactDetailActivityTheme" parent="android:Theme.Holo.Light"> |
Daniel Lehmann | 134e53f | 2010-08-25 14:21:51 -0700 | [diff] [blame] | 26 | <item name="android:windowContentOverlay">@null</item> |
| 27 | </style> |
Daniel Lehmann | c669d26 | 2011-03-16 18:53:59 -0700 | [diff] [blame] | 28 | <style name="ContactEditorActivityTheme" parent="android:Theme.Holo.Light"> |
Romain Guy | 8de29a3 | 2009-03-24 18:08:41 -0700 | [diff] [blame] | 29 | <item name="android:windowContentOverlay">@null</item> |
| 30 | </style> |
| 31 | |
Daisuke Miyakawa | 72c5052 | 2009-07-07 15:37:59 -0700 | [diff] [blame] | 32 | <style name="BackgroundOnly"> |
| 33 | <item name="android:windowBackground">@null</item> |
| 34 | <item name="android:windowContentOverlay">@null</item> |
| 35 | <item name="android:windowAnimationStyle">@null</item> |
| 36 | <item name="android:windowNoTitle">true</item> |
| 37 | <item name="android:windowNoDisplay">true</item> |
| 38 | <item name="android:windowIsFloating">true</item> |
| 39 | </style> |
| 40 | |
Jeff Sharkey | cde7389 | 2011-04-07 00:48:02 -0700 | [diff] [blame] | 41 | <style name="Theme"> |
Jeff Sharkey | 802b205 | 2009-08-04 14:21:06 -0700 | [diff] [blame] | 42 | </style> |
| 43 | |
Jeff Sharkey | cde7389 | 2011-04-07 00:48:02 -0700 | [diff] [blame] | 44 | <style name="Theme.QuickContact" parent="@android:style/Theme.Holo.Light"> |
Jeff Sharkey | 80a193a | 2009-05-21 14:18:18 -0700 | [diff] [blame] | 45 | <item name="android:windowBackground">@android:color/transparent</item> |
Jeff Sharkey | cde7389 | 2011-04-07 00:48:02 -0700 | [diff] [blame] | 46 | <item name="android:colorBackgroundCacheHint">@null</item> |
| 47 | <item name="android:windowFrame">@null</item> |
Jeff Sharkey | 549aa16 | 2009-05-21 01:33:30 -0700 | [diff] [blame] | 48 | <item name="android:windowContentOverlay">@null</item> |
Jeff Sharkey | cde7389 | 2011-04-07 00:48:02 -0700 | [diff] [blame] | 49 | <item name="android:windowAnimationStyle">@null</item> |
| 50 | <item name="android:windowIsFloating">false</item> |
| 51 | <item name="android:backgroundDimEnabled">false</item> |
| 52 | <item name="android:windowIsTranslucent">true</item> |
| 53 | <item name="android:windowNoTitle">true</item> |
Dianne Hackborn | 5112c12 | 2009-09-18 15:52:54 -0700 | [diff] [blame] | 54 | </style> |
| 55 | |
Dmitri Plotnikov | 8e86b75 | 2010-02-22 17:47:57 -0800 | [diff] [blame] | 56 | <style name="ContactsSearchAnimation"> |
| 57 | <item name="android:windowEnterAnimation">@anim/search_bar_enter</item> |
| 58 | <item name="android:windowExitAnimation">@anim/search_bar_exit</item> |
| 59 | </style> |
| 60 | |
Dianne Hackborn | 5112c12 | 2009-09-18 15:52:54 -0700 | [diff] [blame] | 61 | <style name="DummyAnimation"> |
| 62 | <item name="android:windowExitAnimation">@anim/dummy_animation</item> |
| 63 | </style> |
Dmitri Plotnikov | 54aa198 | 2010-09-04 12:17:02 -0700 | [diff] [blame] | 64 | |
Dmitri Plotnikov | 251e4f7 | 2010-10-05 18:48:21 -0700 | [diff] [blame] | 65 | <declare-styleable name="ContactBrowser"> |
| 66 | <attr name="contact_filter_popup_width" format="dimension"/> |
| 67 | </declare-styleable> |
| 68 | |
Dmitri Plotnikov | 54aa198 | 2010-09-04 12:17:02 -0700 | [diff] [blame] | 69 | <declare-styleable name="ContactListItemView"> |
Dmitri Plotnikov | c98fe87 | 2010-12-01 21:46:41 -0800 | [diff] [blame] | 70 | <attr name="list_item_height" format="dimension"/> |
Dmitri Plotnikov | a03c198 | 2010-12-10 16:22:21 -0800 | [diff] [blame] | 71 | <attr name="list_section_header_height" format="dimension"/> |
Dmitri Plotnikov | c98fe87 | 2010-12-01 21:46:41 -0800 | [diff] [blame] | 72 | <attr name="activated_background" format="reference"/> |
Dmitri Plotnikov | 94e3041 | 2010-09-29 18:46:47 -0700 | [diff] [blame] | 73 | <attr name="section_header_background" format="reference"/> |
| 74 | <attr name="list_item_divider" format="reference"/> |
Dmitri Plotnikov | 2223f83 | 2010-09-07 15:35:05 -0700 | [diff] [blame] | 75 | <attr name="list_item_padding_top" format="dimension"/> |
| 76 | <attr name="list_item_padding_right" format="dimension"/> |
| 77 | <attr name="list_item_padding_bottom" format="dimension"/> |
| 78 | <attr name="list_item_padding_left" format="dimension"/> |
| 79 | <attr name="list_item_gap_between_image_and_text" format="dimension"/> |
| 80 | <attr name="list_item_gap_between_label_and_data" format="dimension"/> |
| 81 | <attr name="list_item_call_button_padding" format="dimension"/> |
| 82 | <attr name="list_item_vertical_divider_margin" format="dimension"/> |
| 83 | <attr name="list_item_presence_icon_margin" format="dimension"/> |
Dmitri Plotnikov | 2223f83 | 2010-09-07 15:35:05 -0700 | [diff] [blame] | 84 | <attr name="list_item_photo_size" format="dimension"/> |
Dmitri Plotnikov | 359f111 | 2010-09-26 19:55:39 -0700 | [diff] [blame] | 85 | <attr name="list_item_prefix_highlight_color" format="color"/> |
Dmitri Plotnikov | 3bc7d02 | 2010-11-12 14:20:57 -0800 | [diff] [blame] | 86 | <attr name="list_item_header_text_indent" format="dimension" /> |
| 87 | <attr name="list_item_header_text_color" format="color" /> |
| 88 | <attr name="list_item_header_text_size" format="dimension" /> |
Dmitri Plotnikov | 2223f83 | 2010-09-07 15:35:05 -0700 | [diff] [blame] | 89 | </declare-styleable> |
| 90 | |
Dmitri Plotnikov | e1d4c06 | 2010-07-15 16:20:36 -0700 | [diff] [blame] | 91 | <style name="ContactBrowserTheme" parent="@android:Theme"> |
Dmitri Plotnikov | c98fe87 | 2010-12-01 21:46:41 -0800 | [diff] [blame] | 92 | <item name="list_item_height">?android:attr/listPreferredItemHeight</item> |
Dmitri Plotnikov | c98fe87 | 2010-12-01 21:46:41 -0800 | [diff] [blame] | 93 | <item name="activated_background">@drawable/list_item_activated_background</item> |
Daniel Lehmann | 5e42838 | 2011-04-08 15:02:43 -0700 | [diff] [blame] | 94 | <item name="section_header_background">@drawable/list_title_holo</item> |
Dmitri Plotnikov | a03c198 | 2010-12-10 16:22:21 -0800 | [diff] [blame] | 95 | <item name="list_section_header_height">32dip</item> |
Dmitri Plotnikov | 94e3041 | 2010-09-29 18:46:47 -0700 | [diff] [blame] | 96 | <item name="list_item_divider">@drawable/list_item_divider</item> |
Dmitri Plotnikov | 2223f83 | 2010-09-07 15:35:05 -0700 | [diff] [blame] | 97 | <item name="list_item_padding_top">4dip</item> |
| 98 | <item name="list_item_padding_right">11dip</item> |
| 99 | <item name="list_item_padding_bottom">4dip</item> |
| 100 | <item name="list_item_padding_left">4dip</item> |
| 101 | <item name="list_item_gap_between_image_and_text">8dip</item> |
| 102 | <item name="list_item_gap_between_label_and_data">5dip</item> |
| 103 | <item name="list_item_call_button_padding">14dip</item> |
| 104 | <item name="list_item_vertical_divider_margin">5dip</item> |
| 105 | <item name="list_item_presence_icon_margin">5dip</item> |
Dmitri Plotnikov | 2223f83 | 2010-09-07 15:35:05 -0700 | [diff] [blame] | 106 | <item name="list_item_photo_size">56dip</item> |
Dmitri Plotnikov | 359f111 | 2010-09-26 19:55:39 -0700 | [diff] [blame] | 107 | <item name="list_item_prefix_highlight_color">#729a27</item> |
Dmitri Plotnikov | 3bc7d02 | 2010-11-12 14:20:57 -0800 | [diff] [blame] | 108 | <item name="list_item_header_text_indent">56dip</item> |
| 109 | <item name="list_item_header_text_color">?color/section_header_text_color</item> |
| 110 | <item name="list_item_header_text_size">14sp</item> |
Dmitri Plotnikov | 251e4f7 | 2010-10-05 18:48:21 -0700 | [diff] [blame] | 111 | <item name="contact_filter_popup_width">320dip</item> |
Dmitri Plotnikov | e1d4c06 | 2010-07-15 16:20:36 -0700 | [diff] [blame] | 112 | </style> |
Daniel Lehmann | 3b7d594 | 2010-07-22 18:10:50 -0700 | [diff] [blame] | 113 | |
Katherine Kuan | fd8cded | 2011-05-11 11:34:56 -0700 | [diff] [blame^] | 114 | <!-- TODO: Clean up this file so themes aren't copied. --> |
| 115 | <style name="GroupDetailTheme" parent="@android:Theme"> |
| 116 | <item name="list_item_height">?android:attr/listPreferredItemHeight</item> |
| 117 | <item name="activated_background">@drawable/list_item_activated_background</item> |
| 118 | <item name="section_header_background">@drawable/list_title_holo</item> |
| 119 | <item name="list_section_header_height">32dip</item> |
| 120 | <item name="list_item_divider">@drawable/list_item_divider</item> |
| 121 | <item name="list_item_padding_top">4dip</item> |
| 122 | <item name="list_item_padding_right">11dip</item> |
| 123 | <item name="list_item_padding_bottom">4dip</item> |
| 124 | <item name="list_item_padding_left">4dip</item> |
| 125 | <item name="list_item_gap_between_image_and_text">8dip</item> |
| 126 | <item name="list_item_gap_between_label_and_data">5dip</item> |
| 127 | <item name="list_item_call_button_padding">14dip</item> |
| 128 | <item name="list_item_vertical_divider_margin">5dip</item> |
| 129 | <item name="list_item_presence_icon_margin">5dip</item> |
| 130 | <item name="list_item_photo_size">56dip</item> |
| 131 | <item name="list_item_prefix_highlight_color">#729a27</item> |
| 132 | <item name="list_item_header_text_indent">56dip</item> |
| 133 | <item name="list_item_header_text_color">?color/section_header_text_color</item> |
| 134 | <item name="list_item_header_text_size">14sp</item> |
| 135 | <item name="contact_filter_popup_width">320dip</item> |
| 136 | </style> |
| 137 | |
Dmitri Plotnikov | e1d4c06 | 2010-07-15 16:20:36 -0700 | [diff] [blame] | 138 | <style name="ContactPickerTheme" parent="@android:Theme"> |
Dmitri Plotnikov | 94e3041 | 2010-09-29 18:46:47 -0700 | [diff] [blame] | 139 | <item name="section_header_background">@drawable/section_header</item> |
| 140 | <item name="list_item_divider">@drawable/list_item_divider</item> |
Dmitri Plotnikov | 2223f83 | 2010-09-07 15:35:05 -0700 | [diff] [blame] | 141 | <item name="list_item_padding_top">4dip</item> |
| 142 | <item name="list_item_padding_right">11dip</item> |
| 143 | <item name="list_item_padding_bottom">4dip</item> |
| 144 | <item name="list_item_padding_left">4dip</item> |
| 145 | <item name="list_item_gap_between_image_and_text">8dip</item> |
| 146 | <item name="list_item_gap_between_label_and_data">5dip</item> |
| 147 | <item name="list_item_call_button_padding">14dip</item> |
| 148 | <item name="list_item_vertical_divider_margin">5dip</item> |
| 149 | <item name="list_item_presence_icon_margin">5dip</item> |
Dmitri Plotnikov | 2223f83 | 2010-09-07 15:35:05 -0700 | [diff] [blame] | 150 | <item name="list_item_photo_size">56dip</item> |
Dmitri Plotnikov | 359f111 | 2010-09-26 19:55:39 -0700 | [diff] [blame] | 151 | <item name="list_item_prefix_highlight_color">#729a27</item> |
Dmitri Plotnikov | 3bc7d02 | 2010-11-12 14:20:57 -0800 | [diff] [blame] | 152 | <item name="list_item_header_text_indent">56dip</item> |
| 153 | <item name="list_item_header_text_color">?color/section_header_text_color</item> |
| 154 | <item name="list_item_header_text_size">14sp</item> |
Dmitri Plotnikov | e1d4c06 | 2010-07-15 16:20:36 -0700 | [diff] [blame] | 155 | </style> |
Daniel Lehmann | 3b7d594 | 2010-07-22 18:10:50 -0700 | [diff] [blame] | 156 | |
Dmitri Plotnikov | d8f84e0 | 2011-01-23 18:03:14 -0800 | [diff] [blame] | 157 | <style name="JoinContactActivityTheme" parent="ContactPickerTheme" > |
Dmitri Plotnikov | 2223f83 | 2010-09-07 15:35:05 -0700 | [diff] [blame] | 158 | </style> |
Dmitri Plotnikov | 2ddba01 | 2010-09-16 18:27:35 -0700 | [diff] [blame] | 159 | |
Daniel Lehmann | 2028eb0 | 2011-04-07 21:04:48 -0700 | [diff] [blame] | 160 | <style name="ContactsPreferencesTheme" parent="@android:Theme.Holo.Light"> |
Daniel Lehmann | 1010574 | 2010-07-15 17:35:57 -0700 | [diff] [blame] | 161 | </style> |
Dmitri Plotnikov | 2ddba01 | 2010-09-16 18:27:35 -0700 | [diff] [blame] | 162 | |
Dmitri Plotnikov | a4d6a3b | 2010-10-06 18:04:31 -0700 | [diff] [blame] | 163 | <style name="CustomContactListFilterTheme" parent="@android:Theme"> |
| 164 | </style> |
| 165 | |
Dmitri Plotnikov | 84b3cc7 | 2010-10-11 18:19:51 -0700 | [diff] [blame] | 166 | <style name="ContactPickerLayout" parent="ContactPickerTheme"> |
| 167 | <item name="android:layout_width">match_parent</item> |
| 168 | <item name="android:layout_height">match_parent</item> |
| 169 | </style> |
Dmitri Plotnikov | bee8d3b | 2010-10-12 20:57:46 -0700 | [diff] [blame] | 170 | |
Dmitri Plotnikov | a4d6a3b | 2010-10-06 18:04:31 -0700 | [diff] [blame] | 171 | <style name="CustomContactListFilterView" parent="CustomContactListFilterTheme"> |
| 172 | <item name="android:layout_width">match_parent</item> |
| 173 | <item name="android:layout_height">match_parent</item> |
| 174 | </style> |
| 175 | |
Dmitri Plotnikov | 2ddba01 | 2010-09-16 18:27:35 -0700 | [diff] [blame] | 176 | <declare-styleable name="InterpolatingLayout_Layout"> |
| 177 | <attr name="layout_narrowParentWidth" format="dimension"/> |
| 178 | <attr name="layout_narrowWidth" format="dimension"/> |
Dmitri Plotnikov | 75d6cae | 2011-01-11 11:00:17 -0800 | [diff] [blame] | 179 | <attr name="layout_narrowMarginLeft" format="dimension"/> |
| 180 | <attr name="layout_narrowMarginRight" format="dimension"/> |
| 181 | <attr name="layout_narrowPaddingLeft" format="dimension"/> |
| 182 | <attr name="layout_narrowPaddingRight" format="dimension"/> |
Dmitri Plotnikov | 2ddba01 | 2010-09-16 18:27:35 -0700 | [diff] [blame] | 183 | <attr name="layout_wideParentWidth" format="dimension"/> |
| 184 | <attr name="layout_wideWidth" format="dimension"/> |
Dmitri Plotnikov | 75d6cae | 2011-01-11 11:00:17 -0800 | [diff] [blame] | 185 | <attr name="layout_wideMarginLeft" format="dimension"/> |
| 186 | <attr name="layout_wideMarginRight" format="dimension"/> |
| 187 | <attr name="layout_widePaddingLeft" format="dimension"/> |
| 188 | <attr name="layout_widePaddingRight" format="dimension"/> |
Dmitri Plotnikov | 2ddba01 | 2010-09-16 18:27:35 -0700 | [diff] [blame] | 189 | </declare-styleable> |
Dmitri Plotnikov | 94e3041 | 2010-09-29 18:46:47 -0700 | [diff] [blame] | 190 | |
Dmitri Plotnikov | 85609ed | 2010-11-11 15:59:01 -0800 | [diff] [blame] | 191 | <declare-styleable name="TransitionAnimationView"> |
| 192 | <attr name="clipMarginLeft" format="dimension"/> |
| 193 | <attr name="clipMarginRight" format="dimension"/> |
| 194 | <attr name="clipMarginTop" format="dimension"/> |
| 195 | <attr name="clipMarginBottom" format="dimension"/> |
| 196 | <attr name="enterAnimation" format="reference"/> |
| 197 | <attr name="exitAnimation" format="reference"/> |
| 198 | <attr name="animationDuration" format="integer"/> |
| 199 | </declare-styleable> |
| 200 | |
Dmitri Plotnikov | 94e3041 | 2010-09-29 18:46:47 -0700 | [diff] [blame] | 201 | <style name="DirectoryHeader" parent="ContactBrowserTheme"> |
| 202 | <item name="android:background">@drawable/directory_bg</item> |
| 203 | </style> |
Daniel Lehmann | e9b196e | 2010-10-26 12:17:39 -0700 | [diff] [blame] | 204 | |
Dmitri Plotnikov | 1e5fc0c | 2011-01-31 10:37:57 -0800 | [diff] [blame] | 205 | <style name="NonPhoneActivityTheme" parent="@android:Theme.Translucent"> |
| 206 | </style> |
| 207 | |
| 208 | <style name="NonPhoneDialogTheme" parent="@android:Theme.Dialog"> |
Daniel Lehmann | e9b196e | 2010-10-26 12:17:39 -0700 | [diff] [blame] | 209 | </style> |
Dmitri Plotnikov | d8f84e0 | 2011-01-23 18:03:14 -0800 | [diff] [blame] | 210 | |
| 211 | <style name="SectionDivider"> |
| 212 | <item name="android:background">#7e7e87</item> |
| 213 | <item name="android:layout_height">2dip</item> |
| 214 | <item name="android:layout_width">match_parent</item> |
| 215 | </style> |
Katherine Kuan | 2719ab0 | 2011-05-02 17:18:04 -0700 | [diff] [blame] | 216 | |
| 217 | <style name="ContactDetailItemType"> |
| 218 | <item name="android:layout_width">wrap_content</item> |
| 219 | <item name="android:layout_height">wrap_content</item> |
Katherine Kuan | a2d4a96 | 2011-05-06 15:20:21 -0700 | [diff] [blame] | 220 | <item name="android:textAppearance">?android:attr/textAppearanceMedium</item> |
Katherine Kuan | 2719ab0 | 2011-05-02 17:18:04 -0700 | [diff] [blame] | 221 | <item name="android:textColor">@color/detail_item_type_color</item> |
| 222 | <item name="android:singleLine">true</item> |
| 223 | <item name="android:ellipsize">marquee</item> |
| 224 | <item name="android:gravity">center_vertical</item> |
| 225 | <item name="android:paddingTop">5dip</item> |
| 226 | </style> |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 227 | </resources> |