Steve Kondik | 66dbbd5 | 2016-09-03 05:15:27 -0700 | [diff] [blame] | 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | <!-- Copyright (C) 2006 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 |
| 7 | |
| 8 | http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | |
| 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 | --> |
| 16 | |
| 17 | <resources> |
Steve Kondik | 27cfe78 | 2016-09-06 04:33:28 -0700 | [diff] [blame] | 18 | <style name="Preference"> |
| 19 | <item name="android:layout">@layout/preference_material_settings</item> |
| 20 | </style> |
| 21 | |
| 22 | <style name="EditTextPreference" parent="@*android:style/Preference.Material.DialogPreference.EditTextPreference"> |
| 23 | <item name="android:dialogLayout">@layout/preference_dialog_edittext</item> |
| 24 | </style> |
| 25 | |
| 26 | <style name="PreferenceFragmentStyle" parent="@*android:style/PreferenceFragment.Material"> |
| 27 | <item name="android:layout">@layout/preference_list_fragment</item> |
| 28 | </style> |
| 29 | |
Steve Kondik | 66dbbd5 | 2016-09-03 05:15:27 -0700 | [diff] [blame] | 30 | <style name="PreferenceHeaderPanelSinglePane"> |
| 31 | <item name="android:layout_marginStart">0dp</item> |
| 32 | <item name="android:layout_marginEnd">0dp</item> |
| 33 | <item name="android:background">@null</item> |
| 34 | </style> |
| 35 | |
| 36 | <style name="PreferencePanelSinglePane" parent="@*android:style/PreferencePanel"> |
| 37 | <item name="android:layout_marginStart">0dp</item> |
| 38 | <item name="android:layout_marginEnd">0dp</item> |
| 39 | <item name="android:paddingStart">0dp</item> |
| 40 | <item name="android:paddingEnd">0dp</item> |
| 41 | <item name="android:background">@null</item> |
| 42 | <item name="android:scrollbarStyle">outsideOverlay</item> |
| 43 | </style> |
| 44 | |
| 45 | <style name="PreferenceHeaderListSinglePane" parent="@*android:style/PreferenceHeaderList"> |
| 46 | <item name="android:paddingStart">@dimen/settings_side_margin</item> |
| 47 | <item name="android:paddingEnd">@dimen/settings_side_margin</item> |
| 48 | <item name="android:paddingTop">0dp</item> |
| 49 | <item name="android:paddingBottom">0dp</item> |
| 50 | <item name="android:layout_marginStart">0dp</item> |
| 51 | <item name="android:layout_marginEnd">0dp</item> |
| 52 | <item name="android:layout_marginTop">0dp</item> |
| 53 | <item name="android:layout_marginBottom">0dp</item> |
| 54 | <item name="android:scrollbarStyle">outsideOverlay</item> |
| 55 | </style> |
| 56 | |
| 57 | <style name="PreferenceFragmentListSinglePane" parent="@*android:style/PreferenceFragmentList"> |
| 58 | <item name="android:paddingStart">@dimen/settings_side_margin</item> |
| 59 | <item name="android:paddingEnd">@dimen/settings_side_margin</item> |
| 60 | <item name="android:layout_marginStart">0dp</item> |
| 61 | <item name="android:layout_marginEnd">0dp</item> |
| 62 | <item name="android:scrollbarStyle">outsideOverlay</item> |
| 63 | </style> |
| 64 | |
Steve Kondik | 27cfe78 | 2016-09-06 04:33:28 -0700 | [diff] [blame] | 65 | <style name="SettingsPreferenceHeaderPanel" parent="@*android:style/PreferenceHeaderPanel"> |
| 66 | </style> |
| 67 | |
| 68 | <style name="SettingsPreferenceHeaderList" parent="@*android:style/PreferenceHeaderList"> |
| 69 | </style> |
| 70 | |
| 71 | <style name="TextAppearance.Medium" parent="@android:style/TextAppearance.Material.Medium" /> |
| 72 | <style name="TextAppearance.Small" parent="@android:style/TextAppearance.Material.Small" /> |
| 73 | <style name="TextAppearance.Switch" parent="@android:style/TextAppearance.Material.Title" /> |
| 74 | |
| 75 | <style name="TextAppearance.CategoryTitle" parent="@android:style/TextAppearance.Material.Body2"> |
| 76 | <item name="android:textColor">?android:attr/textColorSecondary</item> |
| 77 | </style> |
| 78 | |
| 79 | <style name="TextAppearance.TileTitle" parent="@android:style/TextAppearance.Material.Subhead" /> |
| 80 | <style name="TextAppearance.TileSubTitle" parent="@android:style/TextAppearance.Material.Body1" /> |
| 81 | |
Steve Kondik | 66dbbd5 | 2016-09-03 05:15:27 -0700 | [diff] [blame] | 82 | </resources> |