Top "Picasso" questions

Picasso is an open source powerful and dynamic image caching and downloading library by Square.

How to load a Bitmap with Picasso without using an ImageView?

With ImageView, I can use the following code to download image with callback Picasso.with(activity).load(url).into(imageView, …

android android-imageview picasso android-bitmap
onBitmapLoaded of Target object not called on first load

In my function : public void getPointMarkerFromUrl(final String url, final OnBitmapDescriptorRetrievedListener listener) { final int maxSize = context.getResources().getDimensionPixelSize(R.dimen.…

picasso
android:load svg file from web and show it on image view

I want to load a svg file from the web and show this file in an ImageView. For non vector …

android svg imageview picasso svg-android
Make ImageView with Round Corner Using picasso

I know there are lots of link available to make ImageView Round Corner. But I'm Using Picasso Library for Image …

android imageview picasso
Clear Cache memory of Picasso

I'm trying to clear the cache memory of Picasso via Android coding. Can anyone please help me in this issue..? …

android caching memory picasso
RecyclerView laggy scrolling

I am loading 400x200 images in RecyclerView, but scrolling is laggy on 2k devices. I am using Picasso for loading …

android android-recyclerview picasso
Picasso image load callback

I want to use Picasso to load three consecutive images one on top of each other in a listview. Using …

java android picasso
Saving image from url using Picasso?

I'm trying save an image using API Picasso. To do it I'm trying use Target to save but I can't …

android picasso
Using Picasso with custom disk cache

In Volley library, the NetworkImageView class requires an ImageLoader that handles all the image requests by searching for them inside …

android caching picasso
Load images from disk cache with Picasso if offline

I have some images that I download from different web sites when the app starts, by doing this: Picasso.with(…

android caching picasso