0

How to get the Gmail contacts data includes like first Name,Last-name B Day Email address Phone Number and the User Photo.How to send Email to a gmail contact from the android Phone.Using the Face Book SDK we can able to get the user contacts details but the Gmail is not come up with a SDK how to get these details.

Mat
  • 202,337
  • 40
  • 393
  • 406
jainish
  • 31
  • 1
  • 3

1 Answers1

1

The class you're looking for is the ContactsContract. The documentation is here.

Nested within ContactContract is a table of common data types, for instance, the contact photo:

java.lang.Object ↳ android.provider.ContactsContract.CommonDataKinds.Photo

Once you have the contact information you need, this question covers using an intent to send an email.

Community
  • 1
  • 1
Stephen Harmon
  • 835
  • 2
  • 9
  • 15