Add number to contact on Android 2.0

后端 未结 3 1072
感情败类
感情败类 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:37

    I've had a similar problem with email addresses. Here's the solution I used that worked:

    ops.add(ContentProviderOperation.newInsert(Data.CONTENT_URI)
        .withValue(Data.RAW_CONTACT_ID, id)
        .withValue(Email.DATA, value)
        .withValue(Email.MIMETYPE, .Email.CONTENT_ITEM_TYPE)
        .withValue(Email.LABEL, label)
        .withValue(Email.TYPE, Email.TYPE_CUSTOM)
        .build());
    ContentProviderResult[] res = cr.applyBatch(ContactsContract.AUTHORITY, ops);
    

    The same solution should work for telephone numbers.

提交回复
热议问题