blob: 30da2f7b654fb9e0912fa31eba6d1c41ebb7d446 [file] [log] [blame]
Santos Cordon7d4ddf62013-07-10 11:58:08 -07001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2006 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
17<resources>
18 <declare-styleable name="EditPhoneNumberPreference">
19 <!-- The enable button text. -->
20 <attr name="enableButtonText" format="string" />
21 <!-- The disable button text. -->
22 <attr name="disableButtonText" format="string" />
23 <!-- The change / update button text. -->
24 <attr name="changeNumButtonText" format="string" />
25 <!-- The confirm button mode. -->
26 <attr name="confirmMode">
27 <!-- Traditional single action "ok" button. -->
28 <enum name="confirm" value="0" />
29 <!-- Two state "enable/disable" button. -->
30 <enum name="activation" value="1" />
31 </attr>
32 </declare-styleable>
33
34 <declare-styleable name="CallForwardEditPreference">
35 <attr name="serviceClass">
36 <!-- voice -->
37 <enum name="voice" value="1" />
38 <!-- data -->
39 <enum name="data" value="2" />
40 </attr>
41 <attr name="reason">
42 <!-- unconditional -->
43 <enum name="unconditional" value="0" />
44 <!-- busy -->
45 <enum name="busy" value="1" />
46 <!-- no_reply -->
47 <enum name="no_reply" value="2" />
48 <!-- not_reachable -->
49 <enum name="not_reachable" value="3" />
50 </attr>
51 </declare-styleable>
PauloftheWest5f907c32014-07-25 07:10:44 -070052
53 <attr name="preferenceBackgroundColor" format="color" />
Santos Cordon7d4ddf62013-07-10 11:58:08 -070054</resources>