>
> this is code i update groupmembership for contact :
public static int removeFromGroup(Context ctx, String contactId, String
groupId) {
ContentValues values = new ContentValues();
values.put(ContactsContract.CommonDataKinds.GroupMembership.RAW_CONTACT_ID,
contactId);
values.put(ContactsContract.CommonDataKinds.GroupMembership.GROUP_ROW_ID,
"");
return ctx.getContentResolver().update(
ContactsContract.Data.CONTENT_URI,values,ContactsContract.CommonDataKinds.GroupMembership.RAW_CONTACT_ID
+ "=" + contactId
+ " AND " +
ContactsContract.CommonDataKinds.GroupMembership.GROUP_ROW_ID
+ "=" + groupId, null);
}
--
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en