android – 如何将位图加载到Picasso的图像视图中

前端之家收集整理的这篇文章主要介绍了android – 如何将位图加载到Picasso的图像视图中前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
是的,我正在使用毕加索加载位图.原因是我在我的适配器的一部分中解码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)’

解决方法

您不能将Bitmap用于毕加索的加载方法.您只能使用uri,file,url path和int资源id.

如果您从url下载图像,则可以像下面的代码一样:

String url = "your_url";
Picasso.with(context).load(url)
    .placeholder(R.drawable.any_drawable)
    .error(R.drawable.anydrawable).into(your_imageView);

对于其他资源相同,只有load方法参数会根据您使用的资源而改变.

原文链接:https://www.f2er.com/android/312035.html

猜你在找的Android相关文章