【发布时间】:2015-11-27 14:31:27
【问题描述】:
我正在为我的应用程序使用 Picasso 库和 Parse.com 我通过解析文档将图像下载到字节数组中。
如何使用 Picasso 将其显示到 imageview 中? Picasso 不接受 load() 中的字节。
file.getDataInBackground(new GetDataCallback() {
@Override
public void done(byte[] data, ParseException e) {
if (e == null) {
Picasso.with(this)
.load(data)
.into(wallpaper);
} else {
}
}
}
谢谢
【问题讨论】:
标签: android parse-platform picasso