Reputation: 1437
I'm working on an app that deals with contacts, and I am looking for ContactsContract compatible equivalents to both of these constants:
Contacts.Groups.GROUP_MY_CONTACTS
Contacts.Groups.GROUP_ANDROID_STARRED
I find it hard to believe that these constants no longer apply in ContactsContract. Am I missing something?
Upvotes: 0
Views: 290
Reputation: 11511
You should be able to get GROUP_ANDROID_STARRED from the STARRED column in ContactsContract.Contacts. I'm not too sure about the GROUP_MY_CONTACTS, but perhaps IN_VISIBLE_GROUP from ContactsContract.ContactsColumns may be what you're looking for.
Upvotes: 1