繁体   English   中英

如何检查Android手机上的联系人是否启用了whatsapp?

[英]How to Check if a contact on android phone book has whatsapp enabled?

对于我的地址簿中给定的号码,我需要查看号码是否启用了whatsapp。 (我们的想法是选择SMS / WhatsApp来启动文本意图)

可以说,我在联系人下面有两个号码,而且我需要知道哪个号码启用了whatsapp。

Nexus 4上的“People”应用程序显示了两个联系人号码,还有一个下面有一个CONNECTIONS部分,它只显示了WhatsApp可能的联系方式。

有没有办法查找(如人们的应用程序如何)?

如果你想知道这个联系人是否有WhatsApp:

String[] projection = new String[] { RawContacts._ID };
String selection = ContactsContract.Data.CONTACT_ID + " = ? AND account_type IN (?)";
String[] selectionArgs = new String[] { "THE_CONTACT_DEVICE_ID", "com.whatsapp" };
Cursor cursor = activity.getContentResolver().query(RawContacts.CONTENT_URI, projection, selection, selectionArgs, null);
boolean hasWhatsApp = cursor.moveToNext();
if (hasWhatsApp){
    String rowContactId = cursor.getString(0);
}

并找到WhatsApp的联系人数

projection = new String[] { ContactsContract.Data.DATA3 };
selection = ContactsContract.Data.MIMETYPE + " = ? AND " + ContactsContract.Data.RAW_CONTACT_ID + " = ? ";
selectionArgs = new String[] { "vnd.android.cursor.item/vnd.com.whatsapp.profile", rawContactId };
cursor = CallAppApplication.get().getContentResolver().query(ContactsContract.Data.CONTENT_URI, projection, selection, selectionArgs, "1 LIMIT 1");
String phoneNumber = null;
if (cursor.moveToNext()) {
    phoneNumber = cursor.getString(0);
}

使用@ idog的方法,我改进了代码以便更轻松地工作。 contactID是要传递的字符串变量。 如果联系人没有WhatsApp返回null ,否则返回contactID作为变量传递。

public String hasWhatsapp(String contactID) {
    String rowContactId = null;
    boolean hasWhatsApp;

    String[] projection = new String[]{ContactsContract.RawContacts._ID};
    String selection = ContactsContract.Data.CONTACT_ID + " = ? AND account_type IN (?)";
    String[] selectionArgs = new String[]{contactID, "com.whatsapp"};
    Cursor cursor = getActivity().getContentResolver().query(ContactsContract.RawContacts.CONTENT_URI, projection, selection, selectionArgs, null);
    if (cursor != null) {
        hasWhatsApp = cursor.moveToNext();
        if (hasWhatsApp) {
            rowContactId = cursor.getString(0);
        }
        cursor.close();
    }
    return rowContactId;
}
public int hasWhatsApp(String contactID) {
        int whatsAppExists = 0;
        boolean hasWhatsApp;

        String[] projection = new String[]{ContactsContract.RawContacts._ID};
        String selection = ContactsContract.Data.CONTACT_ID + " = ? AND account_type IN (?)";
        String[] selectionArgs = new String[]{contactID, "com.whatsapp"};
        Cursor cursor = getActivity().getContentResolver().query(ContactsContract.RawContacts.CONTENT_URI, projection, selection, selectionArgs, null);
        if (cursor != null) {
            hasWhatsApp = cursor.moveToNext();
            if (hasWhatsApp) {
                whatsAppExists = 1;
            }
            cursor.close();
        }
        return whatsAppExists;
    }

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM