How to get the facebook id or url of a contacts that's been synced to the native contacts app via Facebook sync adapter?
I went through different urls, but didn't see any info regarding facebook.
I tried
ContactsContract.Data.CONTENT_URI
ContactsContract.CommonDataKinds.Email.CONTENT_URI
ContactsContract.CommonDataKinds.Phone.CONTENT_URI
ContactsContract.Contacts.CONTENT_URI
as URIs already in the code below:
Uri uri = ContactsContract.Data.CONTENT_URI;
Cursor c = getContentResolver().query(uri, null, null, null, null);
while (c.moveToNext()) {
for (int i=0; i<c.getColumnCount(); i++) {
Log.d(TAG, c.getColumnName(i) + ": " + c.getString(i));
}
Log.d(TAG, "==================================");
}
I do get a column value like
contact_status_res_package: com.facebook.katana
in this dump, and I also get the contacts status (contact_status column), but nowhere do I see the facebook url or id of this contact.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…