如果URL使用Asynctask存储在ArrayList中,如何从服务器下载图像?

时间:2018-09-03 04:59:38

标签: android image arraylist android-asynctask

服务器中的图像,我必须从服务器下载图像。使用Asynctask将图片网址存储在ArrayList中。

如何从ArrayList URL下载图像?我使用Download manager和自定义下载,但未给出实际响应。

1 个答案:

答案 0 :(得分:0)

您可以使用Picasso库。

for (String url : urlList) {
Picasso.with(this)
.load(url)
.into(new Target() {
    @Override
    public void onBitmapLoaded (final Bitmap bitmap, Picasso.LoadedFrom from){
        /* Save the bitmap or do something with it here */

        //Set it in the ImageView
        theView.setImageBitmap(bitmap); 
    }
});
}