我正在尝试在我的android应用程序中加载所有LINE联系人的列表。我可以成功访问微信,WhatsApp和Google Duo的联系人列表。但是由于某种原因,该方法不适用于LINE。我从这里https://developers.line.me/en/docs/android-sdk/overview/阅读了LINE的所有文档。它没有帮助。
Cursor cursor = getContentResolver().query(
RawContacts.CONTENT_URI,
new String[] { RawContacts.CONTACT_ID, RawContacts.DISPLAY_NAME_PRIMARY },
RawContacts.ACCOUNT_TYPE + "= ?",
new String[] { "jp.naver.line.android" },
null);
ArrayList<String> LineContacts = new ArrayList<String>();
int contactNameColumn = cursor.getColumnIndex(RawContacts.DISPLAY_NAME_PRIMARY);
while (cursor.moveToNext())
LineContacts.add(cursor.getString(contactNameColumn));
}
cursor.close();
Log.d(TAG,LineContacts.size());