Thursday, 15 March 2012

image - Get the Google profile picture in Android -


Is currently possible to get a Google Profile image and it will be colored in the ImageView Do ? I am looking for posts that talk about this but I have not managed to find it.

I think what you need to do is authenticate and use one in Google+ Oath Scope (I think it will be plus.login), to get the profile image url:

You can use GoogleApiClient for this to take a look in the documentation or look at the link in your question's comments Insert

After that you use a library to load images from Picasso image C can:

  Picasso.with (reference) .load (pictureUrl) .into (imageView);  

No comments:

Post a Comment