0

Hi how Can I get the list emails of my contacts ? I want to display this list of emails in spinner. thanks

foffa
  • 43
  • 6

1 Answers1

1
ContentResolver cr = getContentResolver();
Cursor cur = cr.query(ContactsContract.Contacts.CONTENT_URI,null, null, null, null);
if (cur.getCount() > 0)
{
  while (cur.moveToNext())
  {
    String id = cur.getString(
                      cur.getColumnIndex(ContactsContract.Contacts._ID));
    Cursor pCur = cr.query(
          ContactsContract.CommonDataKinds.Email.CONTENT_URI, 
          null, 
          ContactsContract.CommonDataKinds.Email.CONTACT_ID +" = ?", 
          new String[]{id}, null);


    while (pCur.moveToNext())
    {
        String email = pCur.getString(
            pCur.getColumnIndex(ContactsContract.CommonDataKinds.Email.DATA));
        // your email handling code would go in here
    } 
    pCur.close();
  }
}

?

Ben Williams
  • 6,027
  • 2
  • 30
  • 54