0

I'm getting the device contacts with the following:

    Cursor c = getBaseContext()
            .getContentResolver()
            .query(ContactsContract.Contacts.CONTENT_URI, null, null,
                    null, null);

How would I go about getting contacts marked as favorites? Is that even possible?

user1126515
  • 1,133
  • 3
  • 17
  • 34

1 Answers1

0

Some version of the Contacts APP use this 'favorites' group to manager contacts, some don't, so it is not possible.

Swing
  • 858
  • 1
  • 8
  • 21