I am looking to get the RAW_CONTACT_ID of a specific Contact using PhoneLookup or even just the Contacts LookupKey.

I know the contacts table has a column name_raw_contact_id that references the raw_contacts._id column but it doesn't seem to be returned when querying ContactsContract.Contacts.CONTENT_LOOKUP_URI with the contacts lookup key.

My phone lookup query is:

String[] projection = new String[] { 
    PhoneLookup.DISPLAY_NAME, PhoneLookup.LOOKUP_KEY };
Uri uri = Uri.withAppendedPath(PhoneLookup.CONTENT_FILTER_URI, number);
Cursor c = resolver.query(uri, projection, null, null, null);

Then I am looking up the Contact based on the lookup key:

String[] contactProjection = new String[] { 
    ContactsContract.Contacts.NAME_RAW_CONTACT_ID 
};
Uri contactUri = Uri.withAppendedPath(
    ContactsContract.Contacts.CONTENT_LOOKUP_URI, lookupKey);
Cursor contactCursor = resolver.query(contactUri, 
    contactProjection, null, null, null);

However, this doesn't compile and I get

cannot find symbol: variable NAME_RAW_CONTACT_ID 
location: class android.provider.ContactsContract.Contacts

But the android documentation shows NAME_RAW_CONTACT_ID as a column.

Is there any way I can get the RAW_CONTACT_ID based off either phone number or lookup key?

link|improve this question

feedback

1 Answer

up vote 0 down vote accepted

I found that the answer is to make a third query:

long rawContactId = -1;
Cursor c = getContentResolver().query(RawContacts.CONTENT_URI,
    new String[]{RawContacts._ID},
    RawContacts.CONTACT_ID + "=?",
    new String[]{String.valueOf(contactId)}, null);
try {
    if (c.moveToFirst()) {
        rawContactId = c.getLong(0);
    }
} finally {
    c.close();
}

But it should be noted that there can be multiple RawContact's per one Contact and the above query will get ALL RawContact's associated with the contactId

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.