1<?xml version="1.0" encoding="utf-8"?> 2<!-- 3 ~ Copyright 2016 Google Inc. 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<resources> 18 <style name="text_header" parent="@android:style/Widget.TextView"> 19 <item name="android:textColor">@color/text_primary</item> 20 <item name="android:textSize">@dimen/text_large</item> 21 </style> 22 23 <style name="text_normal" parent="@android:style/Widget.TextView"> 24 <item name="android:textColor">@color/text_primary</item> 25 <item name="android:textSize">@dimen/text_medium</item> 26 </style> 27 28 <style name="text_small" parent="@android:style/Widget.TextView"> 29 <item name="android:textColor">@color/text_primary</item> 30 <item name="android:textSize">@dimen/text_small</item> 31 </style> 32 33 <style name="action_button" parent="@android:style/Widget.ActionButton"> 34 <item name="android:background">@drawable/bg_action_button</item> 35 <item name="android:backgroundTint">@color/primary</item> 36 <item name="android:tint">@color/white</item> 37 <item name="android:layout_width">40dp</item> 38 <item name="android:layout_height">40dp</item> 39 <item name="android:padding">8dp</item> 40 <item name="android:paddingStart">8dp</item> 41 <item name="android:paddingEnd">8dp</item> 42 <item name="android:scaleType">fitXY</item> 43 </style> 44 45 <style name="connectivity_indicator"> 46 <item name="android:background">@color/connectivity_indicator_bg</item> 47 </style> 48 49 <style name="connectivity_indicator_text"> 50 <item name="android:textColor">@color/connectivity_indicator_text</item> 51 <item name="android:textSize">14sp</item> 52 </style> 53 54 <style name="connectivity_indicator_icon"> 55 <item name="android:tint">@color/connectivity_indicator_text</item> 56 <item name="android:layout_width">wrap_content</item> 57 <item name="android:layout_height">16dp</item> 58 </style> 59</resources> 60