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?