i have a Phone.Lookupkey and Phone.CONTACT_ID and i want to delete only the phone number that it points to, i dont want to delete all the contact information.

How do i put empty value? just update it to ""?

Thanks,

link|improve this question

50% accept rate
feedback

2 Answers

simple update the phone number with empty value, fire the update query with empty string or 0 value

link|improve this answer
feedback

Sometimes only updating a phone number is not enough. After doing this you may see that you have the phone field but it is empty. I used this code:

ArrayList ops = new ArrayList();
String selectPhone = Data.RAW_CONTACT_ID + "=? AND " + Data.MIMETYPE + "='"  + 
Phone.CONTENT_ITEM_TYPE + "'" + " AND " + Phone.TYPE + "=? AND " + Phone.NUMBER + "=?";
String[] phoneArgs = new String[] { String.valueOf(rawContactId), String.valueOf(type), number }; 
ops.add(ContentProviderOperation.newDelete(Data.CONTENT_URI)
    .withSelection(selectPhone, phoneArgs)
    .build()); 
resolver.applyBatch(ContactsContract.AUTHORITY, ops);

It removes the phone number with specified type and number.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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