是的,我正在使用毕加索加载位图.原因是我在我的适配器的一部分中解码URI,并在其他位置加载位图,我读取了
here
You should always call Picasso,even if your URL is null. This way it knows that the image view was recycled.
所以我试过这个….
Bitmap bitMap; ... Picasso.with(getContext()) .load(bitMap) .into(imageView);
但是我收到了这个错误
cannot resolve method ‘load(android.graphics.Bitmap)’