attrs.xml revision e747919853dfcbe29969647d7bf83269056d77bc
1<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2009 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<resources>
17    <declare-styleable name="CameraPreference">
18        <attr name="title" format="string" />
19    </declare-styleable>
20    <declare-styleable name="ListPreference">
21        <attr name="key" format="string" />
22        <attr name="defaultValue" format="string" />
23        <attr name="entryValues" format="reference" />
24        <attr name="entries" format="reference" />
25    </declare-styleable>
26    <declare-styleable name="IconIndicator">
27        <attr name="icons" format="reference" />
28        <attr name="modes" format="reference" />
29    </declare-styleable>
30    <declare-styleable name="IconListPreference">
31        <!-- If a preference does not have individual icons for each entry, it can has a single icon to represent it. -->
32        <attr name="singleIcon" format="reference" />
33        <attr name="icons" />
34        <attr name="largeIcons" format="reference" />
35        <attr name="images" format="reference" />
36    </declare-styleable>
37    <declare-styleable name="InLineSettingPicker">
38        <attr name="prefKey" format="string" />
39    </declare-styleable>
40</resources>
41