我正在尝试在此链接中显示图片:https://dl.dropboxusercontent.com/u/11469423/m6.jpg 在imageview中。我提到了一些帖子,我按照以下方式做了:
URL url = new URL("https://dl.dropboxusercontent.com/u/11469423/m6.jpg");
Bitmap bmp = BitmapFactory.decodeStream(url.openConnection().getInputStream());
mIVPic.setImageBitmap(bmp);
但在运行时,imageview没有显示任何内容。
请让我知道为什么链接中的图片没有显示在imageview上以及如何操作
答案 0 :(得分:-1)
然后你可以做像
这样的事情Picasso.with(context)
.load("http://i.imgur.com/DvpvklR.png")
.into(imageView);