从URL加载位图

时间:2015-03-22 13:30:34

标签: java android

我试图将图片从网站加载到图片视图中,但没有任何内容正在加载。我是一个相当新的android所以我可能会错过一些简单/愚蠢的一步或什么,但我需要一点帮助。注意照片[位置] = www.mydomain.com/photo.png(http://包括在内我显然无法输入)

// Locate the ImageView
        imgphoto = (ImageView) itemView.findViewById(R.id.photos);
        // Capture position and set to the ImageView

        Bitmap bMap = BitmapFactory.decodeFile(photo[position]);
        imgphoto.setImageBitmap(bMap);

1 个答案:

答案 0 :(得分:0)

只需使用Picasso即可。 这个库会为你加载。

Picasso.with(context).load("http://www.yourdomain.com/photo.png").into(imageView);