1<?xml version="1.0" encoding="utf-8"?> 2<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2" xmlns:ns2="http://schemas.android.com/tools"> 3 <bool name="config_materialPreferenceIconSpaceReserved">false</bool> 4 <color name="preference_fallback_accent_color">#ff008577</color> 5 <declare-styleable name="BackgroundStyle"> 6 <attr name="android:selectableItemBackground"/> 7 <!-- Need a non-android: attr here so that gradle doesn't remove it --> 8 <attr name="selectableItemBackground"/> 9 </declare-styleable> 10 <declare-styleable name="CheckBoxPreference"> 11 <!-- The summary for the Preference in a PreferenceActivity screen when the 12 CheckBoxPreference is checked. If separate on/off summaries are not 13 needed, the summary attribute can be used instead. --> 14 <attr format="string" name="summaryOn"/> 15 <attr name="android:summaryOn"/> 16 <!-- The summary for the Preference in a PreferenceActivity screen when the 17 CheckBoxPreference is unchecked. If separate on/off summaries are not 18 needed, the summary attribute can be used instead. --> 19 <attr format="string" name="summaryOff"/> 20 <attr name="android:summaryOff"/> 21 <!-- The state (true for on, or false for off) that causes dependents to be disabled. By default, 22 dependents will be disabled when this is unchecked, so the value of this preference is false. --> 23 <attr format="boolean" name="disableDependentsState"/> 24 <attr name="android:disableDependentsState"/> 25 </declare-styleable> 26 <declare-styleable name="DialogPreference"> 27 <!-- The title in the dialog. --> 28 <attr format="string" name="dialogTitle"/> 29 <attr name="android:dialogTitle"/> 30 <!-- The message in the dialog. If a dialogLayout is provided and contains 31 a TextView with ID android:id/message, this message will be placed in there. --> 32 <attr format="string" name="dialogMessage"/> 33 <attr name="android:dialogMessage"/> 34 <!-- The icon for the dialog. --> 35 <attr format="reference" name="dialogIcon"/> 36 <attr name="android:dialogIcon"/> 37 <!-- The positive button text for the dialog. Set to @null to hide the positive button. --> 38 <attr format="string" name="positiveButtonText"/> 39 <attr name="android:positiveButtonText"/> 40 <!-- The negative button text for the dialog. Set to @null to hide the negative button. --> 41 <attr format="string" name="negativeButtonText"/> 42 <attr name="android:negativeButtonText"/> 43 <!-- A layout to be used as the content View for the dialog. By default, this shouldn't 44 be needed. If a custom DialogPreference is required, this should be set. For example, 45 the EditTextPreference uses a layout with an EditText as this attribute. --> 46 <attr format="reference" name="dialogLayout"/> 47 <attr name="android:dialogLayout"/> 48 </declare-styleable> 49 <declare-styleable name="ListPreference"> 50 <!-- The human-readable array to present as a list. Each entry must have a corresponding 51 index in entryValues. --> 52 <attr format="reference" name="entries"/> 53 <attr name="android:entries"/> 54 <!-- The array to find the value to save for a preference when an entry from 55 entries is selected. If a user clicks on the second item in entries, the 56 second item in this array will be saved to the preference. --> 57 <attr format="reference" name="entryValues"/> 58 <attr name="android:entryValues"/> 59 </declare-styleable> 60 <declare-styleable name="MultiSelectListPreference"> 61 <!-- The human-readable array to present as a list. Each entry must have a corresponding 62 index in entryValues. --> 63 <attr name="entries"/> 64 <attr name="android:entries"/> 65 <!-- The array to find the value to save for a preference when an entry from 66 entries is selected. If a user clicks the second item in entries, the 67 second item in this array will be saved to the preference. --> 68 <attr name="entryValues"/> 69 <attr name="android:entryValues"/> 70 </declare-styleable> 71 <declare-styleable name="Preference"> 72 <!-- The optional icon for the preference --> 73 <attr name="icon"/> 74 <attr name="android:icon"/> 75 <!-- The key to store the Preference value. --> 76 <attr format="string" name="key"/> 77 <attr name="android:key"/> 78 <!-- The title for the Preference in a PreferenceActivity screen. --> 79 <attr name="title"/> 80 <attr name="android:title"/> 81 <!-- The summary for the Preference in a PreferenceActivity screen. --> 82 <attr format="string" name="summary"/> 83 <attr name="android:summary"/> 84 <!-- The order for the Preference (lower values are to be ordered first). If this is not 85 specified, the default ordering will be alphabetic. --> 86 <attr format="integer" name="order"/> 87 <attr name="android:order"/> 88 <!-- When used inside of a modern PreferenceActivity, this declares 89 a new PreferenceFragment to be shown when the user selects this item. --> 90 <attr format="string" name="fragment"/> 91 <attr name="android:fragment"/> 92 <!-- The layout for the Preference in a PreferenceActivity screen. This should 93 rarely need to be changed, look at widgetLayout instead. --> 94 <attr name="layout"/> 95 <attr name="android:layout"/> 96 <!-- The layout for the controllable widget portion of a Preference. This is inflated 97 into the layout for a Preference and should be used more frequently than 98 the layout attribute. For example, a checkbox preference would specify 99 a custom layout (consisting of just the CheckBox) here. --> 100 <attr format="reference" name="widgetLayout"/> 101 <attr name="android:widgetLayout"/> 102 <!-- Whether the Preference is enabled. --> 103 <attr format="boolean" name="enabled"/> 104 <attr name="android:enabled"/> 105 <!-- Whether the Preference is selectable. --> 106 <attr format="boolean" name="selectable"/> 107 <attr name="android:selectable"/> 108 <!-- The key of another Preference that this Preference will depend on. If the other 109 Preference is not set or is off, this Preference will be disabled. --> 110 <attr format="string" name="dependency"/> 111 <attr name="android:dependency"/> 112 <!-- Whether the Preference stores its value to the shared preferences. --> 113 <attr format="boolean" name="persistent"/> 114 <attr name="android:persistent"/> 115 <!-- The default value for the preference, which will be set either if persistence 116 is off or persistence is on and the preference is not found in the persistent 117 storage. --> 118 <attr format="string|boolean|integer|reference|float" name="defaultValue"/> 119 <attr name="android:defaultValue"/> 120 <!-- Whether the view of this Preference should be disabled when 121 this Preference is disabled. --> 122 <attr format="boolean" name="shouldDisableView"/> 123 <attr name="android:shouldDisableView"/> 124 125 <!-- Whether the preference allows displaying divider on top --> 126 <attr format="boolean" name="allowDividerAbove"/> 127 128 <!-- Whether the preference allows displaying divider below it --> 129 <attr format="boolean" name="allowDividerBelow"/> 130 131 <!-- Whether to use single line for the preference title text. By default, preference title 132 will be constrained to one line, so the default value of this attribute is true. --> 133 <attr format="boolean" name="singleLineTitle"/> 134 <attr name="android:singleLineTitle"/> 135 136 <!-- Whether the space for the preference icon view will be reserved. If set to true, the 137 preference will be offset as if it would have the icon and thus aligned with other 138 preferences having icons. By default, preference icon view visibility will be set to 139 GONE when there is no icon provided, so the default value of this attribute is false. 140 --> 141 <attr format="boolean" name="iconSpaceReserved"/> 142 <attr name="android:iconSpaceReserved"/> 143 144 <!-- Whether the Preference is visible. By default, this is set to true. --> 145 <attr format="boolean" name="isPreferenceVisible"/> 146 147 </declare-styleable> 148 <declare-styleable name="PreferenceFragment"> 149 <!-- The layout for the PreferenceFragment. This should rarely need to be changed. --> 150 <attr name="android:layout"/> 151 <!-- List separator to draw between preference views --> 152 <attr name="android:divider"/> 153 <!-- List separator height --> 154 <attr name="android:dividerHeight"/> 155 <!-- Whether a divider is allowed to draw after the last item --> 156 <attr name="allowDividerAfterLastItem"/> 157 </declare-styleable> 158 <declare-styleable name="PreferenceFragmentCompat"> 159 <!-- The layout for the PreferenceFragment. This should rarely need to be changed. --> 160 <attr name="android:layout"/> 161 <!-- List separator to draw between preference views --> 162 <attr name="android:divider"/> 163 <!-- List separator height --> 164 <attr name="android:dividerHeight"/> 165 <!-- Whether a divider is allowed to draw after the last item --> 166 <attr format="boolean" name="allowDividerAfterLastItem"/> 167 </declare-styleable> 168 <declare-styleable name="PreferenceGroup"> 169 <!-- Whether to order the Preference under this group as they appear in the XML file. 170 If this is false, the ordering will follow the Preference order attribute and 171 default to alphabetic for those without the order attribute. --> 172 <attr format="boolean" name="orderingFromXml"/> 173 <attr name="android:orderingFromXml"/> 174 <!-- The maximal number of children that are shown when the preference group is launched 175 where the rest of the children will be hidden. If some children are hidden an expand 176 button will be provided to show all the hidden children. 177 Any child in any level of the hierarchy that is also a preference group (e.g. 178 preference category) will not be counted towards the limit. But instead the children of 179 such group will be counted. 180 By default, all children will be shown, so the default value of this attribute is equal 181 to Integer.MAX_VALUE. 182 The group should have a key defined if an expandable preference is present to correctly 183 persist state. --> 184 <attr format="integer" name="initialExpandedChildrenCount"/> 185 </declare-styleable> 186 <declare-styleable name="PreferenceImageView"> 187 <attr format="dimension" name="maxWidth"/> 188 <attr name="android:maxWidth"/> 189 <attr format="dimension" name="maxHeight"/> 190 <attr name="android:maxHeight"/> 191 </declare-styleable> 192 <declare-styleable name="PreferenceTheme"> 193 194 <!-- =================== --> 195 <!-- Preference styles --> 196 <!-- =================== --> 197 <eat-comment/> 198 199 <!-- Theme for inflating Preference objects --> 200 <attr format="reference" name="preferenceTheme"/> 201 202 <!-- Default style for PreferenceScreen. --> 203 <attr format="reference" name="preferenceScreenStyle"/> 204 <!-- Default style for the PreferenceActivity. --> 205 <attr format="reference" name="preferenceActivityStyle"/> 206 <!-- Default style for Headers pane in PreferenceActivity. --> 207 <attr format="reference" name="preferenceFragmentStyle"/> 208 <!-- Default style for Headers pane in PreferenceActivity. --> 209 <attr format="reference" name="preferenceFragmentCompatStyle"/> 210 <!-- Default style for PreferenceCategory. --> 211 <attr format="reference" name="preferenceCategoryStyle"/> 212 <!-- Default style for Preference. --> 213 <attr format="reference" name="preferenceStyle"/> 214 <!-- Default style for informational Preference. --> 215 <attr format="reference" name="preferenceInformationStyle"/> 216 <!-- Default style for CheckBoxPreference. --> 217 <attr format="reference" name="checkBoxPreferenceStyle"/> 218 <!-- Default style for YesNoPreference. --> 219 <attr format="reference" name="yesNoPreferenceStyle"/> 220 <!-- Default style for DialogPreference. --> 221 <attr format="reference" name="dialogPreferenceStyle"/> 222 <!-- Default style for EditTextPreference. --> 223 <attr format="reference" name="editTextPreferenceStyle"/> 224 <!-- Default style for RingtonePreference. --> 225 <attr format="reference" name="ringtonePreferenceStyle"/> 226 <!-- Default style for DropDownPreference. --> 227 <attr format="reference" name="dropdownPreferenceStyle"/> 228 <!-- The preference layout that has the child/tabbed effect. --> 229 <attr format="reference" name="preferenceLayoutChild"/> 230 <!-- Preference panel style --> 231 <attr format="reference" name="preferencePanelStyle"/> 232 <!-- Preference headers panel style --> 233 <attr format="reference" name="preferenceHeaderPanelStyle"/> 234 <!-- Preference list style --> 235 <attr format="reference" name="preferenceListStyle"/> 236 <!-- Preference fragment list style --> 237 <attr format="reference" name="preferenceFragmentListStyle"/> 238 <!-- Preference fragment padding side --> 239 <attr format="dimension" name="preferenceFragmentPaddingSide"/> 240 <!-- Default style for switch preferences. --> 241 <attr format="reference" name="switchPreferenceStyle"/> 242 <!-- Default style for switch compat preferences. --> 243 <attr format="reference" name="switchPreferenceCompatStyle"/> 244 <!-- Default style for seekbar preferences. --> 245 <attr format="reference" name="seekBarPreferenceStyle"/> 246 </declare-styleable> 247 <declare-styleable name="SeekBarPreference"> 248 <attr format="integer" name="min"/> 249 <attr name="android:max"/> 250 <attr name="android:layout"/> 251 <!--Attribute controlling the amount to increment or decrement the seekbar when the user 252 presses the arrow keys--> 253 <attr format="integer" name="seekBarIncrement"/> 254 <!-- Attribute indicating whether the slider within this preference can be adjusted, that is 255 pressing left/right keys when this preference is focused will move the slider accordingly 256 (e.g. inline adjustable preferences). False, if the slider within the preference is 257 read-only and cannot be adjusted. By default, the seekbar is adjustable. --> 258 <attr format="boolean" name="adjustable"/> 259 <!-- Flag indicating whether the TextView next to the seekbar that shows the current seekbar 260 value will be displayed. If true, the view is VISIBLE; if false, the view will be GONE. 261 By default, this view is VISIBLE. --> 262 <attr format="boolean" name="showSeekBarValue"/> 263 </declare-styleable> 264 <declare-styleable name="SwitchPreference"> 265 <!-- The summary for the Preference in a PreferenceActivity screen when the 266 SwitchPreference is checked. If separate on/off summaries are not 267 needed, the summary attribute can be used instead. --> 268 <attr name="summaryOn"/> 269 <attr name="android:summaryOn"/> 270 <!-- The summary for the Preference in a PreferenceActivity screen when the 271 SwitchPreference is unchecked. If separate on/off summaries are not 272 needed, the summary attribute can be used instead. --> 273 <attr name="summaryOff"/> 274 <attr name="android:summaryOff"/> 275 <!-- The text used on the switch itself when in the "on" state. 276 This should be a very SHORT string, as it appears in a small space. --> 277 <attr name="switchTextOn"/> 278 <attr name="android:switchTextOn"/> 279 <!-- The text used on the switch itself when in the "off" state. 280 This should be a very SHORT string, as it appears in a small space. --> 281 <attr name="switchTextOff"/> 282 <attr name="android:switchTextOff"/> 283 <!-- The state (true for on, or false for off) that causes dependents to be disabled. By default, 284 dependents will be disabled when this is unchecked, so the value of this preference is false. --> 285 <attr name="disableDependentsState"/> 286 <attr name="android:disableDependentsState"/> 287 </declare-styleable> 288 <declare-styleable name="SwitchPreferenceCompat"> 289 <!-- The summary for the Preference in a PreferenceActivity screen when the 290 SwitchPreference is checked. If separate on/off summaries are not 291 needed, the summary attribute can be used instead. --> 292 <attr name="summaryOn"/> 293 <attr name="android:summaryOn"/> 294 <!-- The summary for the Preference in a PreferenceActivity screen when the 295 SwitchPreference is unchecked. If separate on/off summaries are not 296 needed, the summary attribute can be used instead. --> 297 <attr name="summaryOff"/> 298 <attr name="android:summaryOff"/> 299 <!-- The text used on the switch itself when in the "on" state. 300 This should be a very SHORT string, as it appears in a small space. --> 301 <attr format="string" name="switchTextOn"/> 302 <attr name="android:switchTextOn"/> 303 <!-- The text used on the switch itself when in the "off" state. 304 This should be a very SHORT string, as it appears in a small space. --> 305 <attr format="string" name="switchTextOff"/> 306 <attr name="android:switchTextOff"/> 307 <!-- The state (true for on, or false for off) that causes dependents to be disabled. By default, 308 dependents will be disabled when this is unchecked, so the value of this preference is false. --> 309 <attr name="disableDependentsState"/> 310 <attr name="android:disableDependentsState"/> 311 </declare-styleable> 312 <dimen name="preference_category_padding_start">0dp</dimen> 313 <dimen name="preference_icon_minWidth">0dp</dimen> 314 <dimen name="preference_seekbar_padding_end">22dp</dimen> 315 <dimen name="preference_seekbar_padding_start">0dp</dimen> 316 <dimen name="preference_seekbar_value_width">36dp</dimen> 317 <string name="expand_button_title">Advanced</string> 318 <string name="summary_collapsed_preference_list"><ns1:g id="current_items">%1$s</ns1:g>, <ns1:g id="added_items">%2$s</ns1:g></string> 319 <string name="v7_preference_off">OFF</string> 320 <string name="v7_preference_on">ON</string> 321 <style name="Preference"> 322 <item name="android:layout">@layout/preference</item> 323 </style> 324 <style name="Preference.Category"> 325 <item name="android:layout">@layout/preference_category</item> 326 <!-- The title should not dim if the category is disabled, instead only the preference children should dim. --> 327 <item name="android:shouldDisableView">false</item> 328 <item name="android:selectable">false</item> 329 </style> 330 <style name="Preference.Category.Material"> 331 <item name="android:layout">@layout/preference_category_material</item> 332 <item name="allowDividerAbove">true</item> 333 <item name="allowDividerBelow">true</item> 334 <item name="iconSpaceReserved">@bool/config_materialPreferenceIconSpaceReserved</item> 335 </style> 336 <style name="Preference.CheckBoxPreference"> 337 <item name="android:widgetLayout">@layout/preference_widget_checkbox</item> 338 </style> 339 <style name="Preference.CheckBoxPreference.Material"> 340 <item name="android:layout">@layout/preference_material</item> 341 <item name="allowDividerAbove">false</item> 342 <item name="allowDividerBelow">true</item> 343 <item name="iconSpaceReserved">@bool/config_materialPreferenceIconSpaceReserved</item> 344 </style> 345 <style name="Preference.DialogPreference"> 346 <item name="android:positiveButtonText">@android:string/ok</item> 347 <item name="android:negativeButtonText">@android:string/cancel</item> 348 </style> 349 <style name="Preference.DialogPreference.EditTextPreference"> 350 <item name="android:dialogLayout">@layout/preference_dialog_edittext</item> 351 </style> 352 <style name="Preference.DialogPreference.EditTextPreference.Material"> 353 <item name="android:layout">@layout/preference_material</item> 354 <item name="allowDividerAbove">false</item> 355 <item name="allowDividerBelow">true</item> 356 <item name="singleLineTitle">false</item> 357 <item name="iconSpaceReserved">@bool/config_materialPreferenceIconSpaceReserved</item> 358 </style> 359 <style name="Preference.DialogPreference.Material"> 360 <item name="android:layout">@layout/preference_material</item> 361 <item name="allowDividerAbove">false</item> 362 <item name="allowDividerBelow">true</item> 363 <item name="iconSpaceReserved">@bool/config_materialPreferenceIconSpaceReserved</item> 364 </style> 365 <style name="Preference.DropDown"> 366 <item name="android:layout">@layout/preference_dropdown</item> 367 </style> 368 <style name="Preference.DropDown.Material"> 369 <item name="android:layout">@layout/preference_dropdown_material</item> 370 <item name="allowDividerAbove">false</item> 371 <item name="allowDividerBelow">true</item> 372 <item name="iconSpaceReserved">@bool/config_materialPreferenceIconSpaceReserved</item> 373 </style> 374 <style name="Preference.Information"> 375 <item name="android:layout">@layout/preference_information</item> 376 <item name="android:enabled">false</item> 377 <item name="android:shouldDisableView">false</item> 378 </style> 379 <style name="Preference.Information.Material"> 380 <item name="android:layout">@layout/preference_information_material</item> 381 <item name="android:enabled">false</item> 382 <item name="android:shouldDisableView">false</item> 383 </style> 384 <style name="Preference.Material"> 385 <item name="android:layout">@layout/preference_material</item> 386 <item name="allowDividerAbove">false</item> 387 <item name="allowDividerBelow">true</item> 388 <item name="singleLineTitle">false</item> 389 <item name="iconSpaceReserved">@bool/config_materialPreferenceIconSpaceReserved</item> 390 </style> 391 <style name="Preference.PreferenceScreen"> 392 </style> 393 <style name="Preference.PreferenceScreen.Material"> 394 <item name="android:layout">@layout/preference_material</item> 395 <item name="allowDividerAbove">false</item> 396 <item name="allowDividerBelow">true</item> 397 <item name="iconSpaceReserved">@bool/config_materialPreferenceIconSpaceReserved</item> 398 </style> 399 <style name="Preference.SeekBarPreference"> 400 <item name="android:layout">@layout/preference_widget_seekbar</item> 401 <item name="adjustable">true</item> 402 <item name="showSeekBarValue">true</item> 403 </style> 404 <style name="Preference.SeekBarPreference.Material"> 405 <item name="android:layout">@layout/preference_widget_seekbar_material</item> 406 <item name="adjustable">true</item> 407 <item name="showSeekBarValue">true</item> 408 <item name="allowDividerAbove">false</item> 409 <item name="allowDividerBelow">true</item> 410 <item name="iconSpaceReserved">@bool/config_materialPreferenceIconSpaceReserved</item> 411 </style> 412 <style name="Preference.SwitchPreference"> 413 <item name="android:widgetLayout">@layout/preference_widget_switch</item> 414 <item name="android:switchTextOn">@string/v7_preference_on</item> 415 <item name="android:switchTextOff">@string/v7_preference_off</item> 416 </style> 417 <style name="Preference.SwitchPreference.Material"> 418 <item name="android:layout">@layout/preference_material</item> 419 <item name="allowDividerAbove">false</item> 420 <item name="allowDividerBelow">true</item> 421 <item name="singleLineTitle">false</item> 422 <item name="iconSpaceReserved">@bool/config_materialPreferenceIconSpaceReserved</item> 423 </style> 424 <style name="Preference.SwitchPreferenceCompat"> 425 <item name="android:widgetLayout">@layout/preference_widget_switch_compat</item> 426 <item name="android:switchTextOn">@string/v7_preference_on</item> 427 <item name="android:switchTextOff">@string/v7_preference_off</item> 428 </style> 429 <style name="Preference.SwitchPreferenceCompat.Material"> 430 <item name="android:layout">@layout/preference_material</item> 431 <item name="allowDividerAbove">false</item> 432 <item name="allowDividerBelow">true</item> 433 <item name="iconSpaceReserved">@bool/config_materialPreferenceIconSpaceReserved</item> 434 </style> 435 <style name="PreferenceFragment"> 436 <item name="android:paddingLeft">0dp</item> 437 <item name="android:paddingRight">0dp</item> 438 <item name="android:divider">?android:attr/listDivider</item> 439 </style> 440 <style name="PreferenceFragment.Material"> 441 <item name="android:divider">@drawable/preference_list_divider_material</item> 442 <item name="allowDividerAfterLastItem">false</item> 443 </style> 444 <style name="PreferenceFragmentList"> 445 <item name="android:paddingLeft">16dp</item> 446 <item name="android:paddingRight">16dp</item> 447 </style> 448 <style name="PreferenceFragmentList.Material"> 449 <item name="android:paddingLeft">0dp</item> 450 <item name="android:paddingRight">0dp</item> 451 </style> 452 <style name="PreferenceThemeOverlay"> 453 <item name="preferenceScreenStyle">@style/Preference.PreferenceScreen</item> 454 <item name="preferenceFragmentCompatStyle">@style/PreferenceFragment</item> 455 <item name="preferenceCategoryStyle">@style/Preference.Category</item> 456 <item name="preferenceStyle">@style/Preference</item> 457 <item name="preferenceInformationStyle">@style/Preference.Information</item> 458 <item name="checkBoxPreferenceStyle">@style/Preference.CheckBoxPreference</item> 459 <item name="switchPreferenceCompatStyle">@style/Preference.SwitchPreferenceCompat</item> 460 <item name="seekBarPreferenceStyle">@style/Preference.SeekBarPreference</item> 461 <item name="dialogPreferenceStyle">@style/Preference.DialogPreference</item> 462 <item name="editTextPreferenceStyle">@style/Preference.DialogPreference.EditTextPreference</item> 463 <item name="preferenceFragmentListStyle">@style/PreferenceFragmentList</item> 464 <item name="dropdownPreferenceStyle">@style/Preference.DropDown</item> 465 </style> 466 <style name="PreferenceThemeOverlay.v14"> 467 <item name="switchPreferenceStyle">@style/Preference.SwitchPreference</item> 468 <item name="preferenceFragmentStyle">@style/PreferenceFragment</item> 469 </style> 470 <style name="PreferenceThemeOverlay.v14.Material"> 471 <item name="preferenceScreenStyle">@style/Preference.PreferenceScreen.Material</item> 472 <item name="preferenceFragmentCompatStyle">@style/PreferenceFragment.Material</item> 473 <item name="preferenceFragmentStyle">@style/PreferenceFragment.Material</item> 474 <item name="preferenceCategoryStyle">@style/Preference.Category.Material</item> 475 <item name="preferenceStyle">@style/Preference.Material</item> 476 <item name="preferenceInformationStyle">@style/Preference.Information.Material</item> 477 <item name="checkBoxPreferenceStyle">@style/Preference.CheckBoxPreference.Material</item> 478 <item name="switchPreferenceCompatStyle">@style/Preference.SwitchPreferenceCompat.Material</item> 479 <item name="switchPreferenceStyle">@style/Preference.SwitchPreference.Material</item> 480 <item name="seekBarPreferenceStyle">@style/Preference.SeekBarPreference.Material</item> 481 <item name="dialogPreferenceStyle">@style/Preference.DialogPreference.Material</item> 482 <item name="editTextPreferenceStyle">@style/Preference.DialogPreference.EditTextPreference.Material</item> 483 <item name="dropdownPreferenceStyle">@style/Preference.DropDown.Material</item> 484 <item name="preferenceFragmentListStyle">@style/PreferenceFragmentList.Material</item> 485 <item name="android:scrollbars">vertical</item> 486 </style> 487 <style name="Preference_TextAppearanceMaterialBody2"> 488 <item name="android:textSize">14sp</item> 489 <item name="android:fontFamily" ns2:ignore="NewApi">sans-serif</item> 490 <item name="android:textColor">?android:attr/textColorPrimary</item> 491 <item name="android:textStyle">normal</item> 492 </style> 493 <style name="Preference_TextAppearanceMaterialSubhead"> 494 <item name="android:textSize">16sp</item> 495 <item name="android:fontFamily" ns2:ignore="NewApi">sans-serif</item> 496 <item name="android:textColor">?android:attr/textColorPrimary</item> 497 <item name="android:textStyle">normal</item> 498 </style> 499</resources>