android: Universal Image Loader get drawable from string array
问题 Mostly I found like this on Internet public static final String[] imageurl = new String[] { "http://sample.com/sample1.png", "http://sample.com/sample1.png" }; So when loading image we just need to call imageloader.displayImage(imageurl[position], imageView, options); MY QUESTION I have string array inside arrays.xml <string-array name="sample" > <item>image1</item> <item>image2</item> <item>image3</item> <item>image4</item> </string-array> Then I'm trying to read sample string array inside