我知道使用
Uri personPhoto = acct.getPhotoUrl()
会带来个人资料图片,但我仍然没有知道如何在imageView中查看它,如何使用personPhoto
来获取图像
答案 0 :(得分:0)
您可以使用Picasso Library在ImageView中显示图像。 你只需要通过图像视图将uri传递给Picasso。
像
Picasso.with(this).load(personPhoto).into(/*yourimage view id*/);
要使用毕加索,您需要在Gradle中添加以下内容
compile 'com.squareup.picasso:picasso:2.5.2'
阅读http://square.github.io/picasso/
上的文档此外,还有其他库可在ImageView中显示图像。 与Fresco,Glide,Universal Image Loader等
相同答案 1 :(得分:0)
您必须使用Image Loader库从url加载图像并在imageview中显示它们。以下是可用于图像加载的图书馆链接。 Android Arsenal Image Loaders.
我个人使用Glide,你可以像这样使用它来实现它。 首先在gradle文件中添加存储库,如下所示
repositories {
mavenCentral()
}
然后在app.gradle中添加以下依赖项
compile 'com.github.bumptech.glide:glide:3.7.0'
加载图片就像这样做
Glide.with(this).load(personPhoto).into(imageView);