Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

how to get contacts detail with Contact Id in android???

share|improve this question
1  
What you have tried ? – Hardik Oct 6 '12 at 12:30

closed as not a real question by Luksprog, Graham Smith, IceMAN, Bill the Lizard Jan 16 at 14:43

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

2 Answers

up vote 2 down vote accepted

This code will return you the contact number with the given contact id.

ArrayList<String> phones = new ArrayList<String>();

Cursor cursor = mContentResolver.query(
        CommonDataKinds.Phone.CONTENT_URI, 
        null, 
        CommonDataKinds.Phone.CONTACT_ID +" = ?", 
        new String[]{id}, null);

while (cursor.moveToNext()) 
{
    phones.add(cursor.getString(cursor.getColumnIndex(CommonDataKinds.Phone.NUMBER)));
} 

cursor.close();
return(phones);

Here id the contact_id.

share|improve this answer

To fetch the contacts from the phone Uri We need to add the permission in android Manifest

share|improve this answer

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