It was pretty easy to get the Contact picture when querying the People.CONTENT_URI, with a simple

People.loadContactPhoto(activity, ContentUris.withAppendedId(People.CONTENT_URI, contactId)

because I knew the contact Id. Now I need to do the same thing after accesing the Call log. With:

String[] strFields = {
                android.provider.CallLog.Calls.CACHED_NAME,
                android.provider.CallLog.Calls.NUMBER, 
                };

        String strUriCalls="content://call_log/calls"; 

            Uri UriCalls = Uri.parse(strUriCalls); 

            Cursor cursorLog = this.getContentResolver().query(UriCalls, strFields, null, null, null);

I get the list from call log, but I can't find any way of linking this with the contact id needed to load the photo. The app works from api level 4+.

Any help is appreciated. Thank you.

The solution, as guided by Cristian below, that works for me is:

 private long getContactIdFromNumber(String number) {
        String[] projection = new String[]{Contacts.Phones.PERSON_ID};
        Uri contactUri = Uri.withAppendedPath(Contacts.Phones.CONTENT_FILTER_URL,Uri.encode(number));
        Cursor c = getContentResolver().query(contactUri, projection, null, null, null);

        if (c.moveToFirst()) {
            long contactId=c.getLong(c.getColumnIndex(Contacts.Phones.PERSON_ID));
            return contactId;
        }
        return -1;
    }
link|improve this question

feedback

3 Answers

up vote 1 down vote accepted

Then, you must try to get the contact ID by using the queried call log fields. So, you can implement something like this:

private String getContactIdFromNumber(String number) {
    String[] projection = new String[]{Contacts.Phones._ID};
    Uri contactUri = Uri.withAppendedPath(Contacts.Phones.CONTENT_FILTER_URL,
        Uri.encode(number));
    Cursor c = getContentResolver().query(contactUri, projection,
        null, null, null);
    if (c.moveToFirst()) {
        String contactId=c.getString(c.getColumnIndex(Contacts.Phones._ID));
        return contactId;
    }
    return null;
}

Then, you can use that contact ID to get the photo. Something like this in your case:

cursorLog.moveToFirst();
String number = cursorLog.getString(cursorLog.getColumnIndex(android.provider.CallLog.Calls.NUMBER));
contactId = getContactIdFromNumber(number)
People.loadContactPhoto(activity, ContentUris.withAppendedId(People.CONTENT_URI, contactId);
// blah blah blah
link|improve this answer
This solution seems just what I want to do. The only problem is that it doesn't return the correct id. For instance, for a Contact with id 110 it returns id 713. I am sure that 110 is correct, as it loads the correct photo for id 110. Am I missing something ? Thank you all for your support. – Alin Jul 7 '11 at 18:44
Ah, instead of using Contacts.Phones._ID, if I use Contacts.Phones.PERSON_ID it works. Thank you Cristian – Alin Jul 8 '11 at 7:05
feedback

This one works fine for me..

private void contactPickedFromLog(Intent data) {
    // TODO Auto-generated method stub
    String contactNumber = data.getStringExtra(CONTACT_NUMBER);
    Cursor cursor = getContentResolver().query(
            Uri.withAppendedPath(PhoneLookup.CONTENT_FILTER_URI,
                    Uri.decode(contactNumber)),
            new String[] { PhoneLookup._ID }, null, null, null);
    if(cursor.moveToFirst()){
    long contactId = cursor.getLong(0);
    InputStream inputStream = Contacts.openContactPhotoInputStream(
            getContentResolver(),
            ContentUris.withAppendedId(Contacts.CONTENT_URI, contactId));
    if(inputStream!=null)
    Bitmap bitmap = BitmapFactory.decodeStream(inputStream);
    }
}
link|improve this answer
feedback

I'm doing it in this way:

ContentResolver cr=this.getContentResolver();
Cursor cc = cr.query(ContactsContract.Contacts.CONTENT_URI,null, null, null, null);
while (cc.moveToNext())
{
    contactId = cc.getString(cc.getColumnIndex(ContactsContract.Contacts._ID));
    Uri contactPhotoUri = ContentUris.withAppendedId(ContactsContract.Contacts.CONTENT_URI, Long.parseLong(contactId));
    InputStream is=ContactsContract.Contacts.openContactPhotoInputStream(cr, contactPhotoUri);
    //blah-blah
}
link|improve this answer
I think there is something missing from your code... – Alin Jul 7 '11 at 18:43
Everything is there except reading Bitmap from InputStream – barmaley Jul 7 '11 at 19:20
But how do you get the picture from a certain phone number given? – Alin Jul 7 '11 at 21:39
@Alin: unfortunately, given phone number can be assigned to several contacts and even some contacts can have no phones at all, so it's really impossible to get picture relying on phone number. I mean it's possible only to define set of pics (may be empty set) for given phone number. – barmaley Jul 8 '11 at 4:09
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.