如何获取在android中的whatsapp或其他应用程序中使用的联系人

前端之家收集整理的这篇文章主要介绍了如何获取在android中的whatsapp或其他应用程序中使用的联系人前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
嗨,我想获得其他应用程序使用的联系人(如whatsapp或viber)
请看下图

请帮我解决这个问题
谢谢

解决方法

使用清单中的READ_CONTACTS权限,您可以根据帐户类型获取同步的联系人.对于WhatsApp来说,它是“com.whatsapp”.所以:
Cursor c = getContentResolver().query(
        RawContacts.CONTENT_URI,new String[] { RawContacts.CONTACT_ID,RawContacts.DISPLAY_NAME_PRIMARY },RawContacts.ACCOUNT_TYPE + "= ?",new String[] { "com.whatsapp" },null);

ArrayList<String> myWhatsappContacts = new ArrayList<String>();
int contactNameColumn = c.getColumnIndex(RawContacts.DISPLAY_NAME_PRIMARY);
while (c.moveToNext())
{
    // You can also read RawContacts.CONTACT_ID to read the
    // ContactsContract.Contacts table or any of the other related ones.
    myWhatsappContacts.add(c.getString(contactNameColumn));
}
原文链接:https://www.f2er.com/android/317458.html

猜你在找的Android相关文章