My images is loaded from HttpURLConnection.
I have 3 images and want to change them every 2 seconds in one ImageView.
For example, image1 -> image2 -> image3 -> image1 -> image2 ...
Current, my code is as below:
Picasso.with(this).load(BASE_URL + "admin/"+image1).fit().centerInside().into(ivImage);
Picasso.with(this).load(BASE_URL + "admin/"+image2).fit().centerInside().into(ivImage);
Picasso.with(this).load(BASE_URL + "admin/"+image3).fit().centerInside().into(ivImage);