Skip to content Skip to sidebar Skip to footer

Show An "loading..." Image While Background Loading Of Image With Picasso

I am using Picasso for background loading of images (list view and ImagePager). I can set loading image and errorimage with Picasso, but I am unable to show a 'loading in progress'

Solution 1:

Looks like I found a solution myself. Use "placeholder" image:

       Picasso.with(context).load(tnu).error(R.drawable.no_img).placeholder(R.drawable.img_def).into(holder.immoPic);

Works like charm....

Post a Comment for "Show An "loading..." Image While Background Loading Of Image With Picasso"