我想从联系人姓名中检索电话号码。所以我有这个代码
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;
}
但是,如果联系人名称与db中的名称不完全匹配,则不会返回任何内容。那么是否有任何方法可以检索电话号码,即使输入名称也不太可能?
例如,有一个联系人:原型Alex和我的输入名称是:prototype或alex。
答案 0 :(得分:0)
这不是您具体问题的答案,但它可能会有所帮助。有approximate string matching的算法,如Levenshtein距离,soundex或metaphone。 也许你可以选择从内容提供商处获取所有联系人,然后使用其中一种算法进行搜索。