我试图找到如何使用毕加索库将图像从字节或位图加载到imageview。
这是我正在尝试做的事情
ImageView imageview1 = row.FindViewById<ImageView>(Resource.Id.CategoryImageView);
Bitmap decodedByte = BitmapFactory.DecodeByteArray(Image, 0, Image.Length);
Picasso.With(mContext).Load((decodedByte)).Into(imageview1);
但是我得到错误无法将android图形位图转换为anroid net uri 这也是我正在尝试的byte []
byte[] Image;
Picasso.With(mContext).Load((Image)).Into(imageview1);
现在我收到错误无法将android图形字节[]转换为anroid net uri
有没有其他方法可以转换它?