联系DISPLAY_NAME Android

时间:2014-01-29 04:58:44

标签: android android-contacts

我想在GIVEN_NAME,FAMILY_NAME中插入新的联系人,并设置一个显示名称,该名称将显示在联系人列表中,但不会与Google帐户同步。我试过这个:

ops.add(ContentProviderOperation.newInsert(ContactsContract.Data.CONTENT_URI) 
        .withValueBackReference(Data.RAW_CONTACT_ID, rawContactInsertIndex) 
        .withValue(Data.MIMETYPE, StructuredName.CONTENT_ITEM_TYPE)
        .withValue(StructuredName.DISPLAY_NAME, "Name in list")
        .withValue(StructuredName.GIVEN_NAME, "RealN")
        .withValue(StructuredName.FAMILY_NAME, "RealFN")
        .build()); //FIXME: REMOVE WHEN UPDATING CONTACTS

但在联系人列表中,我看到:RealN RealFN,当我想在列表中看到名字时。

0 个答案:

没有答案