对于以下内容 - 我没有图片的网址!我无法使用该网址。
如果我将图像从互联网下载到这样的位图数组中:
Bitmap image = BitmapFactory.decodeStream(file.getReadStream());
//add to the Bitmap Array
images.add(image);
这可以发送给Picasso(或任何其他像UIL的图片加载器吗?)
我知道我可以在我的适配器中显示图像,但是我的内存问题已经消失了。我认为毕加索可以照顾这个和缓存等。
这不起作用,因为它不接受位图源。有没有其他图书馆可以做到这一点?
Picasso.with(context).load(images.get(position)).resize(60, 60).error(R.drawable.error_icon).into(holder.iconImage);