1 <?xml version="1.0" encoding="utf-8"?> 2 <!-- 3 ~ Copyright (C) 2015 The Android Open Source Project 4 ~ 5 ~ Licensed under the Apache License, Version 2.0 (the "License"); 6 ~ you may not use this file except in compliance with the License. 7 ~ You may obtain a copy of the License at 8 ~ 9 ~ http://www.apache.org/licenses/LICENSE-2.0 10 ~ 11 ~ Unless required by applicable law or agreed to in writing, software 12 ~ distributed under the License is distributed on an "AS IS" BASIS, 13 ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 ~ See the License for the specific language governing permissions and 15 ~ limitations under the License. 16 --> 17 18 <resources xmlns:android="http://schemas.android.com/apk/res/android"> 19 <style name="ut_guidance_anchor"> 20 <item name="android:layout_width">match_parent</item> 21 <item name="android:layout_height">@dimen/ut_guidance_anchor_height</item> 22 </style> 23 <style name="ut_guidance_container"> 24 <item name="android:layout_width">match_parent</item> 25 <item name="android:layout_height">match_parent</item> 26 <item name="android:background">@null</item> 27 <item name="android:clipToPadding">false</item> 28 <item name="android:clipChildren">false</item> 29 </style> 30 <style name="ut_guidance_title"> 31 <item name="android:layout_width">wrap_content</item> 32 <item name="android:layout_height">wrap_content</item> 33 <item name="android:layout_alignWithParentIfMissing">true</item> 34 <item name="android:layout_below">@id/guidance_anchor_space</item> 35 <item name="android:ellipsize">end</item> 36 <item name="android:fontFamily">sans-serif-light</item> 37 <item name="android:maxLines">@integer/ut_guidance_title_max_lines</item> 38 <item name="android:textColor">@color/ut_guidance_title_text</item> 39 <item name="android:textSize">@dimen/ut_guidance_title_text_size</item> 40 </style> 41 <style name="ut_guidance_breadcrumb"> 42 <item name="android:layout_above">@id/guidance_title</item> 43 <item name="android:layout_width">wrap_content</item> 44 <item name="android:layout_height">wrap_content</item> 45 <item name="android:layout_alignWithParentIfMissing">true</item> 46 <item name="android:ellipsize">end</item> 47 <item name="android:fontFamily">sans-serif-condensed</item> 48 <item name="android:singleLine">true</item> 49 <item name="android:textColor">@color/ut_guidance_breadcrumb_text</item> 50 <item name="android:textSize">@dimen/ut_guidance_breadcrumb_text_size</item> 51 </style> 52 <style name="ut_guidance_desc"> 53 <item name="android:layout_below">@id/guidance_title</item> 54 <item name="android:layout_width">wrap_content</item> 55 <item name="android:layout_height">wrap_content</item> 56 <item name="android:layout_marginTop">@dimen/ut_guidance_description_margin_top</item> 57 <item name="android:layout_alignWithParentIfMissing">true</item> 58 <item name="android:ellipsize">end</item> 59 <item name="android:fontFamily">sans-serif</item> 60 <item name="android:maxLines">@integer/ut_guidance_description_max_lines</item> 61 <item name="android:textColor">@color/ut_guidance_description_text</item> 62 <item name="android:textSize">@dimen/ut_guidance_description_text_size</item> 63 </style> 64 <style name="ut_guidedactions_container"> 65 <item name="android:layout_width">match_parent</item> 66 <item name="android:layout_height">match_parent</item> 67 <item name="android:background">@null</item> 68 <item name="android:clipToPadding">false</item> 69 <item name="android:clipChildren">false</item> 70 </style> 71 <style name="ut_guidedactions_anchor"> 72 <item name="android:layout_width">match_parent</item> 73 <item name="android:layout_height">@dimen/ut_guidedactions_anchor_height</item> 74 </style> 75 <style name="ut_guidedactions_null_selector"> 76 <item name="android:layout_width">match_parent</item> 77 <item name="android:layout_height">@dimen/ut_guidedactions_selector_height</item> 78 <item name="android:layout_below">@id/guidedactions_anchor_space</item> 79 <item name="android:background">@null</item> 80 </style> 81 <style name="ut_guidedactions_list"> 82 <item name="android:layout_width">match_parent</item> 83 <item name="android:layout_height">match_parent</item> 84 <item name="android:layout_below">@id/guidedactions_anchor_space</item> 85 <item name="android:background">@null</item> 86 <item name="android:clipToPadding">false</item> 87 <item name="android:clipChildren">false</item> 88 <item name="android:focusable">true</item> 89 </style> 90 <style name="ut_guidedactions_item_container"> 91 <item name="android:layout_width">match_parent</item> 92 <item name="android:layout_height">@dimen/ut_guidedactions_item_height</item> 93 <item name="android:background">@drawable/ut_selector_background</item> 94 <item name="android:focusable">true</item> 95 <item name="android:paddingStart">@dimen/ut_guidedactions_item_padding_start</item> 96 <item name="android:paddingEnd">@dimen/ut_guidedactions_item_padding_end</item> 97 <item name="android:paddingTop">@dimen/ut_guidedactions_item_padding_top</item> 98 <item name="android:paddingBottom">@dimen/ut_guidedactions_item_padding_bottom</item> 99 </style> 100 <style name="ut_guidedactions_item_checkmark"> 101 <item name="android:layout_width">@dimen/lb_guidedactions_item_checkmark_diameter</item> 102 <item name="android:layout_height">@dimen/lb_guidedactions_item_checkmark_diameter</item> 103 <item name="android:visibility">gone</item> 104 </style> 105 <style name="ut_guidedactions_item_title"> 106 <item name="android:layout_width">match_parent</item> 107 <item name="android:layout_height">wrap_content</item> 108 <item name="android:ellipsize">end</item> 109 <item name="android:fontFamily">sans-serif-condensed</item> 110 <item name="android:singleLine">true</item> 111 <item name="android:textColor">@color/ut_guidedactions_title_text</item> 112 <item name="android:textSize">14sp</item> 113 <item name="android:background">@null</item> 114 </style> 115 <style name="ut_guidedactions_item_chevron"> 116 <item name="android:layout_width">wrap_content</item> 117 <item name="android:layout_height">wrap_content</item> 118 <item name="android:visibility">gone</item> 119 </style> 120 </resources> 121