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

nit*_*hin 2 android facebook facebook-graph-api

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

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

我在网络浏览器中获取图像,但它没有在Android应用程序中加载.问题不在于imageview,因为我检查了它出现在imageview中的另一个图像URL.

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

请帮忙.

Ram*_*amz 6

您提供的链接将为您提供高清晰度图像.您调用的链接发生的问题是使用http,使用https,如下所示:

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