无法从Android设备获得真正的联系人群组?

时间:2014-03-14 04:48:53

标签: android contacts addressbook contactgroups

我试图通过以下代码从Android设备获取所有组。然后我将所有组名和id放在arraylist中。

Uri CONTENT_URI = ContactsContract.Groups.CONTENT_URI;
            String GR_ID = ContactsContract.Groups._ID;
            String GR_TITLE = ContactsContract.Groups.TITLE;
            ContentResolver cr = getContentResolver();
            Cursor groupCursor = cr.query(CONTENT_URI, null, null, null,
                    ContactsContract.Groups._ID + " ASC");
            while (groupCursor.moveToNext()) {
                String group_id = groupCursor.getString(groupCursor.getColumnIndex(GR_ID));
                String group_name = groupCursor.getString(groupCursor.getColumnIndex(GR_TITLE));

                Group grp = new Group(group_name);
                grp.setId(group_id);

                arrayPersonal.add(grp);
            }
            groupCursor.close();

这是结果 enter image description here

某些群组具有不同的ID但同名。我不知道为什么? 任何帮助将非常感激!谢谢!

1 个答案:

答案 0 :(得分:1)

我遇到了同样的问题,我通过选择 ContactsContract.Groups.ACCOUNT_TYPE =' com.google'

的位置解决了这个问题

我遇到过这个问题,因为我查询了ACCOUNT_TYPE列以查看其中包含的内容,其中一些条目是" com.google"而其他人则是#34; DeviceOnly"。我对我的群组查询有一些其他限制,取自内部Android库(GrepCode),因此使用它们似乎是明智的。这是我的整个选择语句(对于CursorLoader)

    private static final String CONTACT_GROUP_SELECTION = ContactsContract.Groups.AUTO_ADD + " = 0 "
        + " AND " + ContactsContract.Groups.ACCOUNT_TYPE + " = 'com.google' "
        + " AND " + ContactsContract.Groups.ACCOUNT_NAME + " NOT NULL  "
        + " AND " + ContactsContract.Groups.FAVORITES + " = 0 "
        + " AND " + ContactsContract.Groups.DELETED + " = 0  ";