Add number to contact on Android 2.0

后端 未结 3 1099
感情败类
感情败类 2021-01-19 15:36

Im trying to add a phone number to an already existing contact on a Droid-phone. Doing it at the same time as I create a contact is trivial, as the backreference I supply si

3条回答
  •  温柔的废话
    2021-01-19 15:43

    I found an answer. It is not atomic if you want to add several things right away, but hey, who needs stupid atomicity?

    ContentValues values = new ContentValues();
    values.put(Data.RAW_CONTACT_ID, new Integer(contactId).intValue());
    values.put(Data.MIMETYPE, Phone.CONTENT_ITEM_TYPE);
    values.put(Phone.NUMBER, dataValue);
    values.put(Phone.TYPE, Phone.TYPE_CUSTOM);
    values.put(Phone.LABEL, customLabel);
    Uri dataUri = getContentResolver().insert(Data.CONTENT_URI, values);
    

提交回复
热议问题