facebook照片到我的应用程序.
在androID中有可能吗?
请帮我.
感谢致敬,
durgesh limbani
/** * Function loads the users facebook profile pic * * @param userID */public Bitmap getUserPic(String userID) { String imageURL; Bitmap bitmap = null; Log.d(TAG,"Loading Picture"); imageURL = "http://graph.facebook.com/"+userID+"/picture?type=small"; try { bitmap = BitmapFactory.decodeStream((inputStream)new URL(imageURL).getContent()); } catch (Exception e) { Log.d("TAG","Loading Picture Failed"); e.printstacktrace(); } return bitmap;}
您可以更改imageURL中的类型以获得不同尺寸的图片.
总结以上是内存溢出为你收集整理的如何在我的Android应用程序中获取Facebook个人资料图片?全部内容,希望文章能够帮你解决如何在我的Android应用程序中获取Facebook个人资料图片?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)