1<?xml version="1.0" encoding="utf-8"?>
2<!--
3  ~ Copyright (C) 2020 The Android Open Source Project
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<resources>
18    <!-- List of greetings to display on button clicks -->
19    <string-array name="greetings" translatable="false">
20        <item>Hello!</item>
21        <item>Bonjour!</item>
22        <item>Hola!</item>
23        <item>Zdravstvuyte!</item>
24        <item>Ni Hao!</item>
25        <item>Salve!</item>
26        <item>Konnichiwa!</item>
27        <item>Guten Tag!</item>
28        <item>Ola!</item>
29        <item>Anyoung haseyo!</item>
30        <item>Asalaam alaikum!</item>
31        <item>Goddag!</item>
32        <item>Shikamoo!</item>
33        <item>Goedendag!</item>
34        <item>Yassas!</item>
35        <item>Dzien dobry!</item>
36        <item>Selamat siang!</item>
37        <item>Namaste, Namaskar!</item>
38        <item>Merhaba!</item>
39        <item>Shalom!</item>
40    </string-array>
41
42    <!-- Array used for creating items in the scroll demo. The scroll demos creates 2 types of
43         items: (1) A view with two buttons (fixed height) and (2) a textview with varying
44         height. Items here with '0' indicates the buttons item and items with value > 0 indicates
45         the text item where the integer value is the height of the textview. -->
46    <integer-array name="scroll_item_heights">
47        <item>240</item>
48        <item>0</item>
49        <item>60</item>
50        <item>0</item>
51        <item>60</item>
52        <item>60</item>
53        <item>0</item>
54        <item>120</item>
55        <item>0</item>
56        <item>120</item>
57        <item>120</item>
58        <item>0</item>
59        <item>180</item>
60        <item>0</item>
61        <item>180</item>
62        <item>180</item>
63        <item>0</item>
64        <item>240</item>
65        <item>0</item>
66        <item>240</item>
67        <item>240</item>
68        <item>240</item>
69        <item>0</item>
70        <item>240</item>
71        <item>240</item>
72        <item>240</item>
73    </integer-array>
74</resources>