I have an array defined in my strings.xml file "names". I want the values in a local array in my program. how can i do this?
<string-array name="Names">
<item> Adi </item>
<item> John </item>
<item> Adelaide </item>
<item> Alicante </item>
</string-array name>
I want these values to be stored in a local array named item[]. Please help!