I'm trying to access google+ user profile and getting his details like name, email and profile pic as shown:
public void onConnected(Bundle connectionHint) {
// We've resolved any connection errors. mGoogleApiClient can be used to
// access Google APIs on behalf of the user.
mSignInClicked = false;
if (Plus.PeopleApi.getCurrentPerson(mGoogleApiClient) != null) {
Intent i = new Intent(getApplicationContext(), MainActivity.class);
Person currentPerson = Plus.PeopleApi
.getCurrentPerson(mGoogleApiClient);
String personPhotoUrl = currentPerson.getImage().getUrl();
String personGooglePlusProfile = currentPerson.getUrl();
personPhotoUrl = personPhotoUrl.substring(0,
personPhotoUrl.length() - 2)
+ PROFILE_PIC_SIZE;
String email = Plus.AccountApi.getAccountName(mGoogleApiClient);
Bitmap image = BitmapFactory.decodeFile(personPhotoUrl);
i.putExtra("Google", "Logged in using Google Account");
i.putExtra("GoogleUsername", currentPerson.getDisplayName());
i.putExtra("GoogleEmail", email);
i.putExtra("GoogleProfileImage", image);
startActivity(i);
}
I'm able to get the name,email but unable to get his profile pic.
This is how I'm sending the profile pic to my next activity:
Bitmap bitmap = (Bitmap)this.getIntent().getParcelableExtra("GoogleProfileImage");
ImageView imageView = (ImageView) findViewById(R.id.imgProfilePic);
imageView.setImageBitmap(bitmap);
Can anyone say me how do I get the profile pic and send it to my next activity ?
You are getting image from server so you need to use
AsyncTask
..Declare one global variable for
Bitmap
Now call this function
instead of this
Now pass this
resultBmp
named bitmap to your next Activity.