android – 想以编程方式在联系人中创建一个新组

前端之家收集整理的这篇文章主要介绍了android – 想以编程方式在联系人中创建一个新组前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我想创建一个新的联系人组.我可以查询该组并显示所有组名但我不能在android中创建一个组我尝试创建联系人方法但没有创建…

ContentResolver cr = this.getContentResolver();
    groupValues = new ContentValues();
    Log.e("Group","start");
    groupValues.put(android.provider.Contacts.GroupMembership.GROUP_ID,4);
    groupValues.put(android.provider.Contacts.GroupMembership.NAME,"Sriseshaa");
    groupValues.put(android.provider.Contacts.GroupMembership.PERSON_ID,1);

    cr.insert(android.provider.Contacts.GroupMembership.CONTENT_URI,groupValues);
最佳答案
我找到了答案.我发现有两种方式,但我不知道哪种是正确的或最好的方式使用.我在这里分享这些..

它的简单方式,如添加联系人,

ContentValues groupValues;
create group()
{
 ContentResolver cr = this.getContentResolver();
 groupValues = new ContentValues();
 groupValues.put(ContactsContract.Groups.TITLE,"MyContactGroup");
 cr.insert(ContactsContract.Groups.CONTENT_URI,groupValues);
}

另一种使用ContentProviderOperation的方法

 private void createGroup() {
    ArrayList

谢谢

原文链接:https://www.f2er.com/android/430271.html

猜你在找的Android相关文章