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.
Try loading the image directly into your view. Try this:
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