嗨,我在我的 appwidget listview 项目中有缩略图,使用 Picasso。但它在滚动列表视图时显示为正在加载。我使用下面的代码在 RemoteViews getViewAt(int position) 方法中加载图像,
try {
Bitmap b = Picasso.with(context).load(url).get();
remoteView.setImageViewBitmap(R.id.feed_image, b);
} catch (Exception e) {
e.printStackTrace();
}
有没有办法将它存储在缓存中并避免重新加载?请给我一个想法。