android: Universal Image Loader get drawable from string array

亡梦爱人 提交于 2019-12-06 07:41:29

问题


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 arrays.xml

....
ArrayList<Integer> list = new ArrayList<Integer>();
....

final Resources resources = getResources();
final String packageName = getApplication().getPackageName();
final String[] extras = resources.getStringArray(R.array.sample);
for (String extra : extras) {
    int res = resources.getIdentifier(extra, "drawable", packageName);
    if (res != 0) {
        list.add(res);
    }
}

HOW TO LOAD IMAGES FROM ARRAYLIST?

It's like

imageloader.displayImage(list.get(position), imageView, options);

OR

HOW TO SET STRING[] FROM STRING ARRAY INSIDE ARRAYS.XML?

I don't want to set it manually like this

public static final String[] imageurl = new String[] {
    "drawable://" R.drawable.image1
    "drawable://" R.drawable.image2
    ...
};

回答1:


for drawable array ,you can try this:

String imageUri = "drawable://" + R.drawable.image;

instead of R.drawable.image just pass your array position.

Example :

Declare your drawable array :

public static final int[] imageurl = new int[] {
 R.drawable.image1,
 R.drawable.image2,
...

};

now inside getview() method of Baseadapter :

imageloader.displayImage("drawable://"+imageurl(position), imageView, options);


来源:https://stackoverflow.com/questions/21745238/android-universal-image-loader-get-drawable-from-string-array

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!