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