/androidsays/res/values/arrays.xml
XML | 67 lines | 39 code | 11 blank | 17 comment | 0 complexity | 64be110c23630f7836e53e7391ea38d9 MD5 | raw file
1<?xml version="1.0" encoding="utf-8"?> 2<!-- 3 * Copyright (C) 2007 Google Inc. 4 * 5 * Licensed under the Apache License, Version 2.0 (the "License"); 6 * you may not use this file except in compliance with the License. 7 * You may obtain a copy of the License at 8 * 9 * http://www.apache.org/licenses/LICENSE-2.0 10 * 11 * Unless required by applicable law or agreed to in writing, software 12 * distributed under the License is distributed on an "AS IS" BASIS, 13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 * See the License for the specific language governing permissions and 15 * limitations under the License. 16 --> 17 18<resources> 19 20 <!-- Speed settings --> 21 22 <string-array name="speed_entries"> 23 <item>Slow</item> 24 <item>Normal</item> 25 <item>Fast</item> 26 <item>Scaled</item> 27 </string-array> 28 29 <string-array name="speed_entryvalues"> 30 <item>300</item> 31 <item>150</item> 32 <item>0</item> 33 <item>-1</item> 34 </string-array> 35 36 37 <!-- Game settings --> 38 39 <string-array name="game_mode_entries"> 40 <item>Noise Maker</item> 41 <item>Classic</item> 42 <item>Challenge</item> 43 </string-array> 44 45 <string-array name="game_mode_entryvalues"> 46 <item>0</item> 47 <item>1</item> 48 <item>2</item> 49 </string-array> 50 51 <string-array name="sequence_length_entries"> 52 <item>1</item> 53 <item>5</item> 54 <item>10</item> 55 <item>20</item> 56 <item>30</item> 57 </string-array> 58 59 <string-array name="sequence_length_entryvalues"> 60 <item>1</item> 61 <item>5</item> 62 <item>10</item> 63 <item>20</item> 64 <item>30</item> 65 </string-array> 66 67</resources>