我想要獲取Android聯繫人的收藏夾列表中的所有聯繫人。目前,我可以得到所有的組ID,包括最喜歡的組ID。但似乎沒有聯繫人將組ID標識爲最喜歡的組ID。在Android中獲取收藏夾聯繫人
我試圖讓每組中的所有組ID和聯繫人。打印兩個列表後,我發現,最喜歡的羣組標識是不是在聯繫人列表中
ArrayList<String> favGroupId=new ArrayList<String>();
final String[] GROUP_PROJECTION = new String[] {
ContactsContract.Groups._ID, ContactsContract.Groups.TITLE };
Cursor cursor = getContentResolver().query(
ContactsContract.Groups.CONTENT_URI, GROUP_PROJECTION, null,
null, ContactsContract.Groups.TITLE);
while (cursor.moveToNext()) {
String id = cursor.getString(cursor
.getColumnIndex(ContactsContract.Groups._ID));
Log.v("Test",id);
String gTitle = (cursor.getString(cursor
.getColumnIndex(ContactsContract.Groups.TITLE)));
Log.v("Test",gTitle);
if (gTitle.contains("Favorite_")) {
gTitle = "Favorites";
favGroupId.add(id);
}
}
cursor.close();