根据名称Android从联系人中获取电话号码

时间:2012-04-26 05:34:38

标签: android contacts fetch phone-number

我正在开发一个应用程序,我需要从与提供的名称对应的联系人中获取电话号码。我尝试了许多代码,但似乎都没有。

以下是我目前正在使用的代码

public static String getContactPhoneNumber(Context context, String contactName, int type) {
        String phoneNumber = null;

        String[] whereArgs = new String[] { contactName, String.valueOf(type) };

        Log.d(TAG, String.valueOf(contactName));

        Cursor cursor = context.getContentResolver().query(
                ContactsContract.CommonDataKinds.Phone.CONTENT_URI,
                null,
                ContactsContract.Contacts.DISPLAY_NAME + " = ? and "
                        + ContactsContract.CommonDataKinds.Phone.TYPE + " = ?", whereArgs, null);

        int phoneNumberIndex = cursor
                .getColumnIndexOrThrow(ContactsContract.CommonDataKinds.Phone.NUMBER);

        Log.d(TAG, String.valueOf(cursor.getCount()));

        if (cursor != null) {
            Log.v(TAG, "Cursor Not null");
            try {
                if (cursor.moveToNext()) {
                    Log.v(TAG, "Moved to first");
                    Log.v(TAG, "Cursor Moved to first and checking");
                    phoneNumber = cursor.getString(phoneNumberIndex);
                }
            } finally {
                Log.v(TAG, "In finally");
                cursor.close();
            }
        }

        Log.v(TAG, "Returning phone number");
        return phoneNumber;
    }

在传递联系人姓名(例如:John Doe)并输入(2为移动类型的int值)时,即使联系人列表中存在联系人“John Doe”,返回的电话号码也为空。

请帮忙!!!

1 个答案:

答案 0 :(得分:0)

试试这个

而不是ContactsContract.CommonDataKinds.Phone.CONTENT_URI通过 查询方法的ContactsContract.Contacts.CONTENT_URI参数。