1

如何更新联系人的显示名称?下面代码中的操作在没有抛出任何东西的情况下完成,并且似乎可以正常工作 - 也就是说,当我重新查询 ContactsContract.Contact 表时,返回一行并更改了名称。但是,当我尝试在平板电脑上运行股票“人”应用程序时,它崩溃了。显然我做错了什么。

这是代码。早期,它从聚合联系人中获取一个 id,如下所示,其中key是 lookup_key:

  String[] projection = new String[] {
    Contacts._ID, // 0
    Contacts.DISPLAY_NAME, // 1
  };

  Uri uri = Uri.parse (Contacts.CONTENT_LOOKUP_URI + "/" + key);
  ContentResolver cr = getContentResolver();
  Cursor cursor = cr.query (uri, projection, null, null, null);
  if (!cursor.moveToNext()) // move to first (and only) row.
    throw new IllegalStateException ("contact no longer exists for key");
  origId = cursor.getLong(0);
  cursor.close();

然后,在用户完成编辑后,我调用这段代码来更新 display_name:

  ArrayList<ContentProviderOperation> opers = new ArrayList<ContentProviderOperation>();
  ContentProviderOperation.Builder builder = null;

  String[] args = { Long.toString (origId) };
  builder = ContentProviderOperation.newUpdate (Data.CONTENT_URI);
  builder.withSelection (RawContacts.CONTACT_ID + "=?", args);
  builder.withValue(CommonDataKinds.StructuredName.DISPLAY_NAME, name);
  opers.add(builder.build());

  ContentProviderResult[] results = null;
  try {
    results = getContentResolver().applyBatch(ContactsContract.AUTHORITY, opers);
  } catch ...

我意识到我不需要 ContentProviderOperation 这个例子;那是为了以后我有更多东西要更新的时候。

老实说,我对自己实际使用的 ID 感到很困惑。这些名称对我来说不是很清楚,我可能为此操作使用了错误的 ID。

对于它的价值,在更新后查看结果我看到结果代码为 5。我找不到任何文档,所以不知道这是否重要。

4

2 回答 2

6

ID(以及一般的更改联系人)可能会非常令人困惑……我也有一些戏剧性的事情让我印象深刻。

这是我用于更新的一些工作代码。我可以看到的主要区别是您如何声明原始 ID;它需要作为内容值包含在内。

Cursor cursor = _context.getContentResolver().query(contactUri,
            new String[] { Contacts._ID }, null, null, null);
    try {
        if (cursor.moveToFirst()) {
            String rawContactId = cursor.getString(0);
            ArrayList<ContentProviderOperation> ops = new ArrayList<ContentProviderOperation>();
            ContentValues contentValues = new ContentValues();
            contentValues.put(Data.RAW_CONTACT_ID, rawContactId);

            contentValues
                    .put(ContactsContract.Data.MIMETYPE,
                            ContactsContract.CommonDataKinds.Phone.CONTENT_ITEM_TYPE);
            contentValues.put(
                    ContactsContract.CommonDataKinds.Phone.NUMBER,
                    phoneNumber);
            contentValues.put(ContactsContract.CommonDataKinds.Phone.TYPE,
                    ContactsContract.CommonDataKinds.Phone.TYPE_WORK);

            ops.add(ContentProviderOperation.newInsert(Data.CONTENT_URI)
                    .withValues(contentValues).build());
            String contactId = contactUri.getLastPathSegment();
            ops.add(ContentProviderOperation
                        .newUpdate(ContactsContract.Data.CONTENT_URI)
                        .withSelection(
                                ContactsContract.Data.CONTACT_ID
                                        + "=? AND "
                                        + ContactsContract.Data.MIMETYPE
                                        + "=?",
                                new String[] {
                                        contactId,
                                        ContactsContract.CommonDataKinds.StructuredName.CONTENT_ITEM_TYPE })
                        .withValue(
                                ContactsContract.CommonDataKinds.StructuredName.DISPLAY_NAME,
                                newName).build());

            result = _context.getContentResolver().applyBatch(
                    ContactsContract.AUTHORITY, ops);
        }
    } finally {
        cursor.close();
    }

希望它有帮助!

于 2012-12-03T01:57:53.910 回答
0

上面的答案通常是正确的。但是,当我插入

ContactsContract.CommonDataKinds.StructuredName.DISPLAY_NAME 然后尝试做 newUpdate

ContactsContract.CommonDataKinds.StructuredName.DISPLAY_NAME

使用上面的代码 - 它使联系人显示在联系人应用程序中,名称混合了新旧数据。我发现插入和更新ContactsContract.CommonDataKinds.StructuredName.FAMILY_NAME例如按我的预期工作。在我的 Android 4x 上的联系人应用程序中编辑联系人时,我看不到家人并单独给出,请看我 DISPLAY_NAME 是由 Android 组成的。

于 2015-12-18T18:29:38.603 回答