blob: 8018d84abbf62be94e117eb766ca3de299ca0965 [file] [log] [blame]
d34dd1679282016-09-18 08:20:55 -07001<?xml version="1.0" encoding="utf-8"?>
Lars Greissb02cd242014-12-19 00:18:41 -05002<!-- Copyright (C) 2018 The Dirty Unicorns Project
d34dd1679282016-09-18 08:20:55 -07003
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<resources>
17
18 <!-- Base attributes available to CustomSeekBarPreference. -->
19 <declare-styleable name="CustomSeekBarPreference">
20 <attr name="interval" format="integer" />
Pranav Vashi051e8ee2018-11-07 13:28:35 +053021 <attr name="showSign" format="boolean" />
d34dd1679282016-09-18 08:20:55 -070022 <attr name="units" format="string|reference" />
Pranav Vashi051e8ee2018-11-07 13:28:35 +053023 <attr name="continuousUpdates" format="boolean" />
pimpmaneaton2bca34e2019-07-15 12:31:35 -060024 <attr name="min" format="integer" />
25 <attr name="defaultText" format="string|reference" />
26 </declare-styleable>
27
28 <declare-styleable name="SeekBarPreference">
29 <!-- preference -->
30 <attr name="unitsLeft" format="string|reference" />
31 <attr name="unitsRight" format="string|reference" />
32 <attr name="interval" format="integer" />
33 <!-- style -->
34 <attr name="thumb_default_value_color" format="color" />
35 <attr name="value_popup_view_fg" format="color" />
36 <attr name="value_popup_view_bg" format="color" />
d34dd1679282016-09-18 08:20:55 -070037 </declare-styleable>
38
Randall Rushingfd75e0f2015-08-31 04:21:55 -070039 <!-- Value to pass to callback when restore button is pressed -->
40 <declare-styleable name="ColorPreference">
41 <attr name="defaultColorValue" format="integer" />
42 </declare-styleable>
43
SpiritCroced19f0d2018-10-26 17:27:09 +020044 <!-- Color Blend -->
45 <declare-styleable name="ColorBlendPreference">
46 <!-- Preference keys -->
47 <attr name="keyColorStart" format="string" />
48 <attr name="keyColorEnd" format="string" />
49 <attr name="keyBlendReverse" format="string" />
50 <!-- Default values -->
51 <attr name="defaultValueColorStart" format="color" />
52 <attr name="defaultValueColorEnd" format="color" />
53 <attr name="defaultValueBlendReverse" format="boolean" />
54 <!-- Preview strings -->
55 <attr name="previewStartText" format="string" />
56 <attr name="previewEndText" format="string" />
57 <attr name="previewBetweenText" format="string" />
58 </declare-styleable>
59
d34dd1679282016-09-18 08:20:55 -070060</resources>