arrays.xml revision 5ecd81154fa039961f65bb4e36d18ac555b0d1d6
1<?xml version="1.0" encoding="utf-8"?>
2<!--
3/* //device/apps/common/assets/res/any/colors.xml
4**
5** Copyright 2006, The Android Open Source Project
6**
7** Licensed under the Apache License, Version 2.0 (the "License");
8** you may not use this file except in compliance with the License.
9** You may obtain a copy of the License at
10**
11**     http://www.apache.org/licenses/LICENSE-2.0
12**
13** Unless required by applicable law or agreed to in writing, software
14** distributed under the License is distributed on an "AS IS" BASIS,
15** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16** See the License for the specific language governing permissions and
17** limitations under the License.
18*/
19-->
20<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
21
22    <!-- Resources for GlowPadView in LockScreen -->
23    <array name="lockscreen_targets_when_silent">
24        <item>@drawable/ic_lockscreen_unlock</item>
25        <item>@drawable/ic_action_assist_generic</item>
26        <item>@drawable/ic_lockscreen_soundon</item>
27        <item>@null</item>
28    </array>
29
30    <array name="lockscreen_target_descriptions_when_silent">
31        <item>@string/description_target_unlock</item>
32        <item>@string/description_target_search</item>
33        <item>@string/description_target_soundon</item>
34        <item>@null</item>
35    </array>
36
37    <array name="lockscreen_direction_descriptions">
38        <item>@string/description_direction_right</item>
39        <item>@string/description_direction_up</item>
40        <item>@string/description_direction_left</item>
41        <item>@null</item>
42    </array>
43
44    <array name="lockscreen_targets_when_soundon">
45        <item>@drawable/ic_lockscreen_unlock</item>
46        <item>@drawable/ic_action_assist_generic</item>
47        <item>@drawable/ic_lockscreen_silent</item>
48        <item>@null</item>
49    </array>
50
51    <array name="lockscreen_target_descriptions_when_soundon">
52        <item>@string/description_target_unlock</item>
53        <item>@string/description_target_search</item>
54        <item>@string/description_target_silent</item>
55        <item>@null</item>
56    </array>
57
58    <array name="lockscreen_targets_with_camera">
59        <item>@drawable/ic_lockscreen_unlock</item>
60        <item>@drawable/ic_action_assist_generic</item>
61        <item>@drawable/ic_lockscreen_camera</item>
62        <item>@null</item>
63    </array>
64
65    <array name="lockscreen_target_descriptions_with_camera">
66        <item>@string/description_target_unlock</item>
67        <item>@string/description_target_search</item>
68        <item>@string/description_target_camera</item>
69        <item>@null</item>
70    </array>
71
72    <array name="lockscreen_targets_unlock_only">
73        <item>@drawable/ic_lockscreen_unlock</item>
74    </array>
75
76    <array name="lockscreen_target_descriptions_unlock_only">
77        <item>@string/description_target_unlock</item>
78    </array>
79
80    <!-- list of 3- or 4-letter mnemonics for a 10-key numeric keypad -->
81    <string-array translatable="false" name="lockscreen_num_pad_klondike">
82        <item></item><!-- 0 -->
83        <item></item><!-- 1 -->
84        <item>ABC</item><!-- 2 -->
85        <item>DEF</item><!-- 3 -->
86        <item>GHI</item><!-- 4 -->
87        <item>JKL</item><!-- 5 -->
88        <item>MNO</item><!-- 6 -->
89        <item>PQRS</item><!-- 7 -->
90        <item>TUV</item><!-- 8 -->
91        <item>WXYZ</item><!-- 9 -->
92    </string-array>
93</resources>
94