Contact Custom Fields

后端 未结 3 439
我寻月下人不归
我寻月下人不归 2020-12-10 07:55

Alright, I\'m a little new to the Android SDK, so forgive me if my question doesn\'t make sense or is very trivial. I\'d like to add a custom field for contacts, that contai

3条回答
  •  难免孤独
    2020-12-10 08:46

    It's working! But I changed Data.CONTACT_ID to Data.RAW_CONTACT_ID here:

    if (mod == 0) {
        values.put(Data.CONTACT_ID, this.getId());
        values.put(Data.MIMETYPE, clsContacts.FORMALITY_MIMETYPE);
        ctx.getContentResolver().insert(Data.CONTENT_URI, values);
    }
    

提交回复
热议问题