This is sort of out of curiosity question. Reading through Pro Android 3 book and I came upon Contacts.People.NOTES. Since People is inner class of Contacts class which been deprecated and replaced by ContactsContract I'm looking for NOTES constant replacement. Is there anything?
Asked
Active
Viewed 270 times
1 Answers
1
Here are two similar Stack Overflow questions that will have you resolve this issue:
But to answer your question, the field you're looking for is most likely:
ContactsContract.CommonDataKinds.Note.NOTE

Community
- 1
- 1

Marvin Pinto
- 30,138
- 7
- 37
- 54
-
1Here is direct link to API [ContactsContract.CommonDataKinds.Note.NOTE](http://developer.android.com/reference/android/provider/ContactsContract.CommonDataKinds.Note.html#NOTE) little buried in the documentation – peter_budo Jan 26 '12 at 17:39