Skip to content

Instantly share code, notes, and snippets.

@29jitender
Created October 7, 2014 09:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save 29jitender/813107319641e7c99ddb to your computer and use it in GitHub Desktop.
Save 29jitender/813107319641e7c99ddb to your computer and use it in GitHub Desktop.
get contact image from contact id
public Uri getContactPhotoUri(long contactId) {
Uri photoUri = ContentUris.withAppendedId(Contacts.CONTENT_URI,
contactId);
photoUri = Uri.withAppendedPath(photoUri,
Contacts.Photo.CONTENT_DIRECTORY);
return photoUri;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment