forked from jfeinstein10/SlidingMenu
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patharray.xml
More file actions
36 lines (32 loc) · 971 Bytes
/
array.xml
File metadata and controls
36 lines (32 loc) · 971 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string-array name="color_names">
<item>Red</item>
<item>Green</item>
<item>Blue</item>
<item>White</item>
<item>Black</item>
</string-array>
<string-array name="birds">
<item>Eagle</item>
<item>Flamingo</item>
<item>Heron</item>
<item>Ostrich</item>
<item>Peacock</item>
<item>Penguin</item>
<item>Toucan</item>
<item>Turkey</item>
<item>Vulture</item>
</string-array>
<string-array name="birds_img">
<item>@drawable/eagle</item>
<item>@drawable/flamingo</item>
<item>@drawable/heron</item>
<item>@drawable/ostrich</item>
<item>@drawable/peacock</item>
<item>@drawable/penguin</item>
<item>@drawable/toucan</item>
<item>@drawable/turkey</item>
<item>@drawable/vulture</item>
</string-array>
</resources>