I would like to store image Id's in the form of R.drawable.* inside an array using an XML values file, and then retrieve the array in my activity. Any ideas of how to achieve this? Thanks.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
You use a typed array in arrays.xml file within your res folder that looks like this:
Then in your activity access them like so:
|
||||
|
|
You can't store arrays in R.drawable as far as I know. What you can do is create an array in config.xml or strings.xml that maps a path to a drawable resource by using an alias resource. See if this works, and please let me know if you need any additional help. |
|||
|
|