How to make carousel effect in android using Picasso library?

A

AC Question

I am trying to make an carousel effect in android using Picasso library!
The common syntax is:
Picasso.with(context).load(url).into(target);

We have to use ViewPager for carousel effect,

so what shall I do?
I was making an array of Images to pass to function that shows ViewPager,
How to make an array of Images taken from Picasso. or URL

Thanks in advance :)