Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Hy everybody.

In my aplication I can have more than one email. And in this situation i don't know how i can update more than one mail in phone book. With one mail i can update without any problem.

Here is my code when I update one mail

     EditText etEmail = (EditText)contentEmail.findViewWithTag("ete");
     String stEtEmail = etEmail.getText().toString();
     values.clear();
     String mailWhere = ContactsContract.Data.CONTACT_ID + "=? AND " + ContactsContract.Data.MIMETYPE + "=?"; 
     String[] mailWhereParams = new String[]{String.valueOf(idContacto),ContactsContract.CommonDataKinds.Email.CONTENT_ITEM_TYPE}; 
     values.put(ContactsContract.CommonDataKinds.Email.DATA,stEtEmail);

     cr.update(ContactsContract.Data.CONTENT_URI, values, mailWhere, mailWhereParams);

But how I can do the same for more than one email? I try and in phone book every mail are equally update. Someone can help me? Thanks

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.