Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
1  
Can you clarify what you mean by "inside an array using XML"? – unluddite Aug 4 '11 at 17:14
a values file. eg, strings.xml – gammaraptor Aug 4 '11 at 17:17
1  
I don't understand why you would want to do this. Could you provide a bit more background about why you want to do it this way? – Matt Rogers Aug 4 '11 at 17:21
Sounds like you are trying to do something way more complicated than necessary. – Octavian Damiean Aug 4 '11 at 17:26
1  
What I'm trying to do is to store the id for images that will be displayed in a listview. – gammaraptor Aug 4 '11 at 17:31

2 Answers

up vote 39 down vote accepted

You use a typed array in arrays.xml file within your res folder that looks like this:

<?xml version="1.0" encoding="utf-8"?>
<resources>

    <string-array name="random_imgs">
        <item>@drawable/car_01</item>
        <item>@drawable/balloon_random_02</item>
        <item>@drawable/dog_03</item>
    </string-array>

</resources>

Then in your activity access them like so:

TypedArray imgs = getResources().obtainTypedArray(R.array.random_imgs);
//get resourceid by index
imgs.getResourceId(i, -1)
// or set you ImageView's resource to the id
mImgView1.setImageResource(imgs.getResourceId(i, -1));
share|improve this answer
Thank you very much. I adapted the code, and now it works. Thank you very much. – gammaraptor Aug 4 '11 at 17:35

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.

share|improve this answer
Any reason for the downvote for a 2 year old answer? – Pheonixblade9 Mar 25 at 18:37

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.