Display an Image via URL

1

I have an image on the link http://187.45.142.241:8080/umamaoNovo/images/u184Tulips.jpg

I would like to know if it takes some function to display fast post need to display images in a ListView.

    
asked by anonymous 10.11.2014 / 13:05

1 answer

2

You have some options on how to implement this functionality in your project.

The first one (which I particularly prefer) is using the Universal Image Loader , a super library easy to implement and you can implement just by reading the documentation. If you're having difficulty, there are several tutorials.

The second is using Volley's Volley ImageLoader and NetworkImageView . It is very easy to implement too, with the official documentation you can easily.

    
10.11.2014 / 14:33