Android-load Images Into Listview
I have ListView and Fragment. there I'm having web images which are from web service, and put those images into ListView. All the time when I log into my application, images initi
Solution 1:
Try Picasso library, might solve your issue. http://square.github.io/picasso/
Picasso.with(context).load("http://i.imgur.com/DvpvklR.png").into(imageView);
Post a Comment for "Android-load Images Into Listview"