android 根据电话模糊查询姓名

public void getName() {

// 获取输入的电话号码

    String incomingNumber = mDigits.getText().toString().replace(" ", "");
ContentResolver contentResolver = mContext.getContentResolver();


Cursor cursor = null;

// 定义查询的结果集列
String[] projection = new String[] { ContactsContract.Contacts._ID,
ContactsContract.CommonDataKinds.StructuredName.GIVEN_NAME,
ContactsContract.CommonDataKinds.Phone.NUMBER };

// 模糊查询
cursor = contentResolver.query(
ContactsContract.CommonDataKinds.Phone.CONTENT_URI, projection,
ContactsContract.CommonDataKinds.Phone.NUMBER+" LIKE"+" '"+ incomingNumber +"%'",
null, "");
mNameText.setBackgroundResource(R.drawable.pic_phone_callname_bg);
if (cursor == null || cursor.getCount() != 1 || incomingNumber.length() == 0) {
//  查询结果不存在或者有多件时
mNameText.setText("");
mNameText.getBackground().setAlpha(0);

} else {

//  查询结果有且仅有一件时

cursor.moveToFirst();

// 获取结果集第二列:姓名

String name = cursor.getString(1);
mNameText.setText(name);
mNameText.setTextSize(20);
mNameText.getBackground().setAlpha(255);
}
    }
  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值