android联系人群组操作

本文介绍了如何在Android中进行联系人群组的操作,包括查询、新建、删除群组及成员管理等。通过示例代码展示了如何实现这些功能。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

android联系人群组操作


查询群组

Cursor cursor = getContentResolver().query(Groups.CONTENT_URI,null,null,null,null);   
for (cursorAll.moveToFirst();!(cursorAll.isAfterLast());cursorAll.moveToNext()) {   
组名:cursor.getString(cursor.getColumnIndex(Groups.TITLE));   
组id:curso.getLong(cursor.getColumnIndex(Groups._ID));   
}   
  
新建组(名字为name):   
    ContentValues values = new ContentValues();   
   values.put(Groups.TITLE, name);   
    getContentResolver().inser(Groups.CONTENT_URI, values);   
  
删除组(Id为groupId):   
    getContentResolver().delete(Uri.parse(Groups.CONTENT_URI +"?" +ContactsContract.CALLER_IS_SYNCADAPTER + "=true"),Groups._ID+"="+groupId,null);   
  
给组重命名(oldName;newName;groupId):   
Uri uri = ContentUris.withAppendedId(Groups.CONTENT_URI, groupId);   
ContentValues values = new ContentValues();   
values.put(Groups.TITLE,newName);   
getContentResolver().update(uri,values,null,null);   
  
给组添加成员(groupId,personId):   
ContentValues values = new ContentValues();         
values.put(ContactsContract.CommonDataKinds.GroupMembership.RAW_CONTACT_ID,personId);         
values.put(ContactsContract.CommonDataKinds.GroupMembership.GROUP_ROW_ID,groupId);         
values.put(ContactsContract.CommonDataKinds.GroupMembership.MIMETYPE,ContactsContract.CommonDataKinds.GroupMembership.CONTENT_ITEM_TYPE);           
getContentResolver().insert(ContactsContract.Data.CONTENT_URI, values);   
  
给组移除成员(groupId,personId):   
getContentResolver().delete(ContactsContract.Data.CONTENT_URI,ContactsContract.CommonDataKinds.GroupMembership.RAW_CONTACT_ID + "=? and " +ContactsContract.CommonDataKinds.GroupMembership.GROUP_ROW_ID + "=? and " +ContactsContract.CommonDataKinds.GroupMembership.MIMETYPE + "=?",new String[]{"" + personId,"" + groupId,ContactsContract.CommonDataKinds.GroupMembership.CONTENT_ITEM_TYPE}); 
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值