In code, it's easy to use the Resources class to get an instance of an XML typed array resource and traverse its items. My question: is it possible to reference array resource items in XML itself as shown below
<resource> <array name="items"> <item>Item One</item> <item>Item Two</item> <item>Item Three</item> </array> <string name="itemThree">@array/items[2]</string> </resource> The format shown above does not work. Does anyone know if that is possible using a different format?