如何从我的联系人列表中仅获取某些特定或选定的联系人?
如何从我的联系人列表中仅获取某些特定或选定的(多个)联系人,并将这些选定的联系人组成一个组?
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这里获取一些想法代码的
完整示例链接
Here get some part of code for idea
here the Complete Example link
我无法给你完整的答案。无论如何,我希望这有用。
要在组中移动联系人,您需要为其组更新或添加新条目。该组在数据表中通过
MIMETYPE = GroupMembership.CONTENT_ITEM_TYPE 进行原始指定。
因此,您需要:
查找您的 raw_contact 的 raw_contact_id
在数据表中查找
RAWCONTACT_ID=yourid MIMETYPE = GroupMembership.CONTENT_ITEM_TYPE
如果它存在,您需要更新它,否则添加它
有关执行这些操作的方法,请查看
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:
Find the raw_contact_id of your raw_contact
Look for a raw in the data table with
RAWCONTACT_ID=yourid MIMETYPE = GroupMembership.CONTENT_ITEM_TYPE
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.