Skip to content Skip to sidebar Skip to footer

Get Profile Picture From Facebook And Set In Imageview

I retrieved details like userID, email, name, etc but I want to set user profile picture in my imageview. How can it be done? loginButton.registerCallback(callbackManager, new Face

Solution 1:

just use fb id to get profile picture of the user.

try this one...

StringfbImg="http://graph.facebook.com/"+retrived_user_id+"/picture";

now you can use this 'fbImg' string to load profile pic.

Post a Comment for "Get Profile Picture From Facebook And Set In Imageview"