Google should really document their contacts API, its really irritating to find out how to insert specific details.

Anyways,

I want to send following contact details to Contact native application of android:

  1. Name
  2. Last Name [Family Name]
  3. Street Address
  4. City
  5. State
  6. Zip Code
  7. Contact Phone no.

I have figured out that Family name is stored in ContactsContract.CommonDataKinds.StructuredName.FAMILY_NAME

Anyhelp will really be appreciated. And if you know any other columns insertion beyond these mentioned. I am ready to buy it. Only condition is it should use ContactsContract i.e. above android 2.1 API Level 5

Thankx :)

link|improve this question

47% accept rate
Hello, I also working for the same..did you anyhow managed to pass Family name? please if you have found the way..tell me..thanks :) – FasteKerinns Nov 24 '11 at 7:32
feedback

1 Answer

ContactsContract.CommonDataKinds.StructuredPostal.STREET
ContactsContract.CommonDataKinds.StructuredPostal.CITY
ContactsContract.CommonDataKinds.StructuredPostal.REGION
ContactsContract.CommonDataKinds.StructuredPostal.POSTCODE
ContactsContract.CommonDataKinds.Phone.NUMBER

You'll find all of them here.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.