0

我想从联系人姓名中检索电话号码。所以我有这个代码

public String getPhoneNumber(String name) {
    String phonenumber = "";
    ContentResolver cr = getContentResolver();
    Cursor cursor = cr.query(ContactsContract.Contacts.CONTENT_URI, null,
            "DISPLAY_NAME LIKE '%" + name + "%'", null, null);
    if (cursor.moveToFirst()) {
        String contactId = cursor.getString(cursor
                .getColumnIndex(ContactsContract.Contacts._ID));
        //
        // Get all phone numbers.
        //
        Cursor phones = cr.query(Phone.CONTENT_URI, null, Phone.CONTACT_ID
                + " = " + contactId, null, null);
        while (phones.moveToNext()) {
            String number = phones.getString(phones
                    .getColumnIndex(Phone.NUMBER));
            int type = phones.getInt(phones.getColumnIndex(Phone.TYPE));
            switch (type) {
            case Phone.TYPE_HOME:
                //phonenumber = number;
                // do something with the Home number here...
                break;
            case Phone.TYPE_MOBILE:
                phonenumber = number;
                // do something with the Mobile number here...
                break;
            case Phone.TYPE_WORK:
                //phonenumber = number;
                // do something with the Work number here...
                break;
            }
        }
        phones.close();
        //
        // Get all email addresses.
        //

    }
    cursor.close();
    return phonenumber;
}

但是,如果联系人姓名与数据库中的姓名不完全匹配,它将不返回任何内容。那么有没有什么办法可以找回连输入名字都不太可能的电话号码呢?

例如,有一个联系人:Prototype Alex,我输入的名称是:prototype 或 alex。

4

1 回答 1

0

这不是您具体问题的答案,但它可能会有所帮助。有一些近似字符串匹配的算法,如 Levenshtein 距离、soundex 或 metaphone。也许您可以选择从内容提供商处获取所有联系人,然后使用其中一种算法进行搜索。

于 2012-04-16T13:41:36.860 回答