Android:高品质的Facebook个人资料图片

时间:2014-04-08 16:11:02

标签: android facebook facebook-graph-api

我需要在我的应用中显示facebook朋友个人资料图片。

我使用了此网址 http://graph.facebook.com/uid/picture?type=large&redirect=true&width=600&height=600

我在网络浏览器中获取图片,但未在Android应用中加载。问题不在于imageview,因为我检查了它在imageview中出现的另一个图片网址。

imageLoader.DisplayImage(http://graph.facebook.com/uid/picture?type=large&redirect=true&width=600&height=600, thumb_image);

请帮忙。

1 个答案:

答案 0 :(得分:6)

您提供的链接将为您提供高清晰度图像。您调用的链接发生的问题是使用http,请使用https:

imageLoader.DisplayImage(https://graph.facebook.com/uid/picture?type=large&redirect=true&width=600&height=600, thumb_image);