我在Android上从字节数组加载图片时遇到了一些困难。
我想使用Fresco框架加载图像,它是setImageUri方法,但我不知道如何从字节数组创建Uri。这甚至可能吗?或者也许还有另一种方法可以使用字节数组中的Fresco图像。
现在我正在使用这样的占位符:
Drawable d = new BitmapDrawable(context.getResources(),BitmapFactory.decodeByteArray(child.getLogo(), 0, child.getLogo().length));
holder.getLogo().getHierarchy().setPlaceholderImage(d);
还有更好的方法吗?