我可以和毕加索一起使用Volley吗?

时间:2015-11-27 06:13:26

标签: android android-volley picasso

说我有这个方法

String getURL(){}; // means return a string URL asynchronously 

getURL()使用Volley请求JSON对象,GSON解析对象以获取图像URL。

我可以和毕加索一起做吗?

Picasso
    .with()
    .load(getURL())
    .placeholder()
    .into();

Picasso会用实际图像刷新占位符图像吗?

2 个答案:

答案 0 :(得分:1)

如您所知,Volley是异步的,因此在Volley请求的onResponse内,您已成功获取图像的Url,您可以使用Picasso将该Url加载到ImageView中。

希望这有帮助!

答案 1 :(得分:0)

我可以在Volley的onResponse方法中使用Picasso。