blob: 91903c2e22bf00ffd8feaffbc533f728bc9d111f [file] [log] [blame]
d34de27f18c2016-09-18 08:20:55 -07001<?xml version="1.0" encoding="utf-8"?>
rohandc9857b2021-01-18 02:11:23 -05002<!-- Copyright (C) 2017 The Dirty Unicorns Project
d34de27f18c2016-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">
Pranav Vashi4fb19902020-01-01 22:35:04 +053020 <attr name="defaultValueText" format="string" />
d34de27f18c2016-09-18 08:20:55 -070021 <attr name="interval" format="integer" />
Pranav Vashif0a0b7c2018-11-07 13:28:35 +053022 <attr name="showSign" format="boolean" />
d34de27f18c2016-09-18 08:20:55 -070023 <attr name="units" format="string|reference" />
Pranav Vashif0a0b7c2018-11-07 13:28:35 +053024 <attr name="continuousUpdates" format="boolean" />
d34de27f18c2016-09-18 08:20:55 -070025 </declare-styleable>
26
SpiritCroc214860d2018-10-26 17:27:09 +020027 <!-- Color Blend -->
28 <declare-styleable name="ColorBlendPreference">
29 <!-- Preference keys -->
30 <attr name="keyColorStart" format="string" />
31 <attr name="keyColorEnd" format="string" />
32 <attr name="keyBlendReverse" format="string" />
33 <!-- Default values -->
34 <attr name="defaultValueColorStart" format="color" />
35 <attr name="defaultValueColorEnd" format="color" />
36 <attr name="defaultValueBlendReverse" format="boolean" />
37 <!-- Preview strings -->
38 <attr name="previewStartText" format="string" />
39 <attr name="previewEndText" format="string" />
40 <attr name="previewBetweenText" format="string" />
41 </declare-styleable>
42
d34de27f18c2016-09-18 08:20:55 -070043</resources>