android查询没有格式的电话号码

时间:2012-02-21 09:19:40

标签: android android-contentprovider android-contacts

我正在尝试获取所有具有以某些查询开头的号码的联系人。

contactLookup = getContentResolver().query(
                Data.CONTENT_URI,
            new String[] { Data._ID, Phone.NUMBER, Phone.TYPE, Phone.LABEL },
            Data.MIMETYPE + "='" + Phone.CONTENT_ITEM_TYPE + "' and "
                    + ContactsContract.CommonDataKinds.Phone.NUMBER + " like ?",
            new String[] { "%" + query + "%" }, null);

if (contactLookup != null && contactLookup.getCount() > 0) { 
   contactLookup.moveToNext();
   String number = contactLookup.getString(contactLookup.getColumnIndex(ContactsContract.CommonDataKinds.Phone.NUMBER));
   Log.v("debug", number);
   contactLookup.getString(contactLookup.getColumnIndex(BaseColumns._ID));
}

这个数字是123-456-789,但是我的查询字符串是123456.我如何仅比较没有格式化字符的数字。

1 个答案:

答案 0 :(得分:0)

查看SDK中PhoneUtils中可用的内容。