我需要预先加载图像,然后将其保存到缓存中并附加其他信息。有一些简单的解决方案吗?
我保存图片的代码看起来:
Picasso.with(mC.get()).load(image.getSrc()).fetch();
我正在寻找像
这样的东西Picasso.with(mC.get()).load(image.getSrc()).fetch().withAddInfo(image.getInfo());
稍后使用:
String info = Picasso.with(mC.get()).load(image.getSrc()).getAddInfo();
有办法吗?