how to get contact photo URI

后端 未结 5 1576
夕颜
夕颜 2020-12-01 16:59

I am working with Android Contact ContentProvider. I have a Phone Number and I need to get the URI of the Photo of the contact associated with thi

5条回答
  •  悲哀的现实
    2020-12-01 17:35

    Here's the code from Android Documentation.

    Uri contactUri = ContentUris.withAppendedId(ContactsContract.Contacts.CONTENT_URI, contactId);
    return Uri.withAppendedPath(contactUri, ContactsContract.Contacts.Photo.CONTENT_DIRECTORY);
    

提交回复
热议问题