attrs.xml revision 73e782de608cbe2ddffd75c055009ff2e208f78b
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        <attr name="icons" />
32    </declare-styleable>
33    <declare-styleable name="EvenlySpacedLayout">
34        <attr name="orientation">
35            <enum name="horizontal" value="0" />
36            <enum name="vertical" value="1" />
37        </attr>
38        <!-- Weather we keep the space in both ends -->
39        <attr name="keepEndSpace" format="boolean"/>
40    </declare-styleable>
41</resources>
42