| <!-- |
| ~ Copyright (C) 2012 The Android Open Source Project |
| ~ |
| ~ Licensed under the Apache License, Version 2.0 (the "License"); |
| ~ you may not use this file except in compliance with the License. |
| ~ You may obtain a copy of the License at |
| ~ |
| ~ http://www.apache.org/licenses/LICENSE-2.0 |
| ~ |
| ~ Unless required by applicable law or agreed to in writing, software |
| ~ distributed under the License is distributed on an "AS IS" BASIS, |
| ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| ~ See the License for the specific language governing permissions and |
| ~ limitations under the License |
| --> |
| |
| <resources> |
| |
| <style name="DirectoryHeader"> |
| <item name="android:background">@android:color/transparent</item> |
| </style> |
| |
| <!-- TextView style with blue underline. It is most suitable for headers. |
| |
| This is similar to ?android:attr/listSeparatorTextView but uses different |
| background and text color. See also android:style/Widget.Holo.TextView.ListSeparator |
| (which is private, so we cannot specify it as a parent style). --> |
| <style name="ContactListSeparatorTextViewStyle"> |
| <item name="android:layout_width">match_parent</item> |
| <item name="android:layout_height">wrap_content</item> |
| <!-- See comments for @dimen/list_section_divider_min_height --> |
| <item name="android:minHeight">@dimen/list_section_divider_min_height</item> |
| <item name="android:background">@drawable/list_section_divider_holo_custom</item> |
| <item name="android:textAppearance">?android:attr/textAppearanceSmall</item> |
| <item name="android:textStyle">bold</item> |
| <item name="android:textColor">@color/people_app_theme_color</item> |
| <item name="android:gravity">center_vertical</item> |
| <item name="android:paddingLeft">8dip</item> |
| <item name="android:paddingStart">8dip</item> |
| <item name="android:ellipsize">end</item> |
| <item name="android:singleLine">true</item> |
| <item name="android:textAllCaps">true</item> |
| </style> |
| |
| <style name="ListViewStyle" parent="@android:style/Widget.Holo.Light.ListView"> |
| <item name="android:overScrollMode">always</item> |
| </style> |
| |
| <style name="ContactListFilterTheme" parent="@android:Theme.Holo.Light.Dialog"> |
| <item name="android:windowCloseOnTouchOutside">true</item> |
| <item name="android:listViewStyle">@style/ListViewStyle</item> |
| </style> |
| |
| <style name="CustomContactListFilterView" parent="ContactListFilterTheme"> |
| <item name="android:layout_width">match_parent</item> |
| <item name="android:layout_height">match_parent</item> |
| </style> |
| |
| <style name="BackgroundOnlyTheme" parent="@android:style/Theme.Holo.Light"> |
| <item name="android:windowBackground">@null</item> |
| <item name="android:windowContentOverlay">@null</item> |
| <item name="android:windowAnimationStyle">@null</item> |
| <item name="android:windowNoTitle">true</item> |
| <item name="android:windowNoDisplay">true</item> |
| <item name="android:windowIsFloating">true</item> |
| </style> |
| </resources> |