如何从我的联系人列表中仅获取某些特定或选定的联系人?

发布于 2024-12-25 18:03:02 字数 239 浏览 1 评论 0原文

如何从我的联系人列表中仅获取某些特定或选定的(多个)联系人,并将这些选定的联系人组成一个组?

Intent intent1 = new Intent(Intent.ACTION_PICK, Contacts.Phones.CONTENT_URI);
startActivityForResult(intent1, PICK_CONTACT_RQCODE_OLD);
startActivity(intent1);

How can I get only some particular or selected (multiple) contacts from my contact list and make a group with those selected contacts?

Intent intent1 = new Intent(Intent.ACTION_PICK, Contacts.Phones.CONTENT_URI);
startActivityForResult(intent1, PICK_CONTACT_RQCODE_OLD);
startActivity(intent1);

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

谁许谁一生繁华 2025-01-01 18:03:02

这里获取一些想法代码的

URI contactData = data.getData();
Cursor c = managedQuery(contactData, null, null, null, null);
if (c.moveToFirst()) 
{

name = c.getString(c.getColumnIndexOrThrow(ContactsContract.CommonDataKinds.Phone.DISPLAY_NAME));
no = c.getString(c.getColumnIndexOrThrow(ContactsContract.CommonDataKinds.Phone.NUMBER));

}

完整示例链接

Here get some part of code for idea

URI contactData = data.getData();
Cursor c = managedQuery(contactData, null, null, null, null);
if (c.moveToFirst()) 
{

name = c.getString(c.getColumnIndexOrThrow(ContactsContract.CommonDataKinds.Phone.DISPLAY_NAME));
no = c.getString(c.getColumnIndexOrThrow(ContactsContract.CommonDataKinds.Phone.NUMBER));

}

here the Complete Example link

生生漫 2025-01-01 18:03:02

我无法给你完整的答案。无论如何,我希望这有用。

要在组中移动联系人,您需要为其组更新或添加新条目。该组在数据表中通过 MIMETYPE = GroupMembership.CONTENT_ITEM_TYPE 进行原始指定。
因此,您需要:

  1. 查找您的 raw_contact 的 raw_contact_id

  2. 在数据表中查找 RAWCONTACT_ID=yourid MIMETYPE = GroupMembership.CONTENT_ITEM_TYPE

  3. 如果它存在,您需要更新它,否则添加它

有关执行这些操作的方法,请查看SampleSyncAdapter:它为您提供了很多线索。

I can't give you the full answer. I hope this is useful anyway.

To move your contact in a group you need to update or add a new entry for its group. The group is specified in a raw in the Data table with MIMETYPE = GroupMembership.CONTENT_ITEM_TYPE.
So you need to:

  1. Find the raw_contact_id of your raw_contact

  2. Look for a raw in the data table with RAWCONTACT_ID=yourid MIMETYPE = GroupMembership.CONTENT_ITEM_TYPE

  3. In case it exists you need to update it otherwise add it

For the way to do those things have a look to the SampleSyncAdapter: it gives you a lot of clues.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文