Volley Library返回位图

时间:2014-09-12 19:50:25

标签: android android-volley

我试图使用图书馆的截击,但我有点怀疑。

volley库有一些函数只返回一个位图?

伪代码:

Bitmap bmp = Volley.getImageURL (url); 

谢谢

1 个答案:

答案 0 :(得分:1)

我认为它有这样的功能: http://blog.lemberg.co.uk/volley-part-3-image-loader

示例代码:

String imageUrl = "http://some.server.com/image.png";
Volley.newRequestQueue(this).add(new ImageRequest(imageUrl, new Response.Listener<Bitmap>() {
    @Override
    public void onResponse(Bitmap bitmap) {
        // Do something with loaded bitmap...
    }
}, 1024, 1024, null, null));

但是有更好的图书馆可以从互联网上加载图片 - Picasso

示例代码:

String imageUrl = "http://some.server.com/image.png";  
// This request is synchronous, so it shouldn't be made from main thread
Bitmap bitmap = Picasso.with(this).load(imageUrl).get();