i want to store Images in array from URL but i don't know how to implement this functionality.
just like i stored images from drawable in array i want to store images in array from URL.
example of drawable:
public Integer[] mThumbIds = {
R.drawable.pic_1, R.drawable.pic_2,
R.drawable.pic_3, R.drawable.pic_4,
R.drawable.pic_5, R.drawable.pic_6,
R.drawable.pic_7, R.drawable.pic_8,
R.drawable.pic_9, R.drawable.pic_10,
R.drawable.pic_11, R.drawable.pic_12,
R.drawable.pic_13, R.drawable.pic_14,
R.drawable.pic_15
};
i tried this but it didn't work:
public Integer[] mThumbIds = {
R.string.http_icons_iconarchive_com_icons_martz90_circle_512_android_icon_png
};