How do I set a list of images in the listview - imageview from the page url?

1

The problem is that whenever I have a new image on the page specify I have to update the application with the new image URL set on the page.

    
asked by anonymous 28.09.2017 / 11:54

1 answer

-2

It has several api's, a very simple API is Picasso:

Picasso.with(context).load("http://myimage.png").into(mImageView);
    
28.09.2017 / 12:03