1

我使用光标从 android 联系人列表中获取所有联系人:

ContentResolver cr = getContentResolver();
    Cursor cur = cr.query(ContactsContract.Contacts.CONTENT_URI, null, null, null, null);

    if (cur.getCount() > 0) {
      while (cur.moveToNext()) {
        String id = cur.getString(cur.getColumnIndex(ContactsContract.Contacts._ID));
        String name = cur.getString(cur.getColumnIndex(ContactsContract.Contacts.DISPLAY_NAME));
        if (Integer.parseInt(cur.getString(cur.getColumnIndex(ContactsContract.Contacts.HAS_PHONE_NUMBER))) > 0) {
          Cursor pCur = cr.query(ContactsContract.CommonDataKinds.Phone.CONTENT_URI, null, ContactsContract.CommonDataKinds.Phone.CONTACT_ID + " = ?", new String[] { id }, null);
          while (pCur.moveToNext()) {
            phoneContactList.add(name);
            Log.i("Contact List", name);
          }
          pCur.close();
        }
      }

我的联系人列表与 facebook 同步。但在联系人列表中,我没有从 facebook 获取联系人。

如何获取所有同步联系人..?

4

1 回答 1

0

万一有人偶然发现,答案就在这里:

https://stackoverflow.com/a/8138587/669180

“Facebook 不包含在 ContactPicker 中,因为 Facebook 禁止这样做。”

于 2013-04-29T13:20:46.613 回答