how to display group of images as string in arrayl

2019-09-12 09:31发布

问题:

hi i am new to android i got the image url responce from server via json in arraylist i got the arraylist string and i stored it in arraylist

this is my coding:

ArrayList al = new ArrayList();

al.add(message.getParameters());

here i add the responce string into array this responce is image string. the image string is url.

here i want to display the images in emulator

how can i accomplish this please tell me

回答1:

I will give you an idea about this. Set an ImageView in your layout, then load the image in ImageView from the URL stored in ArrayList.