How load multiple images from the url to a viewpager

2.7k Views Asked by At

i am new in android. I need to load multiple images from the URL to a viewpager by using lazyloading

images are not from the drawable

These are my urls:

String[] imagUrl={
    "http://img6a.flixcart.com/image/shoe/b/v/g/black-coaster-globalite-10-200x200-imadw577jjh5fsry.jpeg",
    "http://img6a.flixcart.com/image/shoe/b/v/g/black-coaster-globalite-10-200x200-imadw577shaeghnn.jpeg",

};
1

There are 1 best solutions below

3
On

Also, there is a good Library Called:(picasso) you can use it.

Here is the tutorial:

http://javatechig.com/android/how-to-use-picasso-library-in-android

And for codes:

//Initialize ImageView
ImageView imageView = (ImageView) findViewById(R.id.imageView);
ImageView imageView = (ImageView) findViewById(R.id.imageView2);

//Loading image from below url into imageView

Picasso.with(this)
   .load("YOUR IMAGE URL HERE")
   .into(imageView);

Picasso.with(this)
       .load("Your second image url")
       .into(imageView2);

With the best results, you can this.