gpt4 book ai didi

android - 更新联系人拼音名称 - android API 级别 19 (4.4.3)

转载 作者:行者123 更新时间:2023-11-29 01:41:27 25 4
gpt4 key购买 nike

我正在尝试为特定联系人添加拼音名称。

我正在做以下事情:

ArrayList<android.content.ContentProviderOperation> ops = new ArrayList<android.content.ContentProviderOperation>();
ops.add(ContentProviderOperation.newUpdate(Data.CONTENT_URI)
.withSelection(Data._ID + "=?", new String[]{String.valueOf(ContactId)})
.withValue(CommonDataKinds.StructuredName.PHONETIC_GIVEN_NAME, "mois")
.build());

getContentResolver().applyBatch(ContactsContract.AUTHORITY, ops);

但是虽然我没有收到任何错误 - 联系人没有更新。

有什么想法吗?

最佳答案

好的,所以如果权限设置正确并且更新其他内容有效,我认为问题是选择中的 ID 错误(contact vs. raw_contact vs. data)。

尝试:

withSelection(Data.RAW_CONTACT_ID + "=?", new String[]{String.valueOf(RawContactId)})

关于android - 更新联系人拼音名称 - android API 级别 19 (4.4.3),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24395952/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com