How to display image in appwidget listview without reload it using Picasso android

614 Views Asked by At

Hi I have thumbnail in my appwidget listview item using Picasso. But it shows as loading when scrolling the listview. I have used the below code for image loading inside RemoteViews getViewAt(int position) method,

try {
                Bitmap b = Picasso.with(context).load(url).get();
                remoteView.setImageViewBitmap(R.id.feed_image, b);
            } catch (Exception e) {
                e.printStackTrace();
            }

Is there any way to store it in cache and avoid reloading? Please suggest me an idea.

1

There are 1 best solutions below

1
On

Try loading the image directly into your view. Try this:

String url= "your img url here";
Picasso.with(context).load(url).into(remoteView);

This will automatically cache the image and scrolling will not make additional network requests, it will just check if it is already in the cache.

Find more info for this here: https://guides.codepath.com/android/Displaying-Images-with-the-Picasso-Library