我需要确定给定联系人组的自定义铃声。
我可以通过使用以下查询成功地获取联系人的自定义铃声:
Uri queryUri = Uri.withAppendedPath(ContactsContract.PhoneLookup.CONTENT_FILTER_URI, Uri.encode(callerNumber));
String[] columns = new String[]{ContactsContract.Contacts.DISPLAY_NAME,
ContactsContract.Contacts.CUSTOM_RINGTONE, ContactsContract.CommonDataKinds.GroupMembership.CUSTOM_RINGTONE };
Cursor contactsCursor = getContentResolver().query(queryUri, columns, null, null, null);
但我不知道如何确定联系人组的自定义铃声。
你知道怎么做吗?
提前致谢!