1

グループに連絡先メンバーを追加したい:

values.put(ContactsContract.CommonDataKinds.GroupMembership.GROUP_ROW_ID, groupId);

現在、このグループのTITLEしか持っていません。この TITLEを取得するにはどうすればよいgroupIdですか?

4

2 に答える 2

1

これは、タイトルからグループ ID を取得する方法の完全版です。基本的に、すべてのグループを繰り返し、タイトルを比較して ID を見つけます。

private String getGroupId(String groupTitle) {
    Cursor cursor = getContentResolver().query(ContactsContract.Groups.CONTENT_URI,new String[]{ContactsContract.Groups._ID,ContactsContract.Groups.TITLE}, null, null, null);     
    cursor.moveToFirst();
    int len = cursor.getCount();

    String groupId = null;
    for (int i = 0; i < len; i++) {
        String id = cursor.getString(cursor.getColumnIndex(Groups._ID));
        String title = cursor.getString(cursor.getColumnIndex(Groups.TITLE));

        if (title.equals(groupTitle)) {
            groupId = id;
            break;
        }
        cursor.moveToNext();
    }
    cursor.close();

    return groupId;
}
于 2013-10-14T07:39:40.210 に答える