首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 移动开发 > 移动开发 >

确定号码在不在联系人中间

2012-09-06 
确定号码在不在联系人当中public boolean contactExists(Context context, String number) {?/// number i

确定号码在不在联系人当中

public boolean contactExists(Context context, String number) {?
/// number is the phone number?
Uri lookupUri = Uri.withAppendedPath(?
PhoneLookup.CONTENT_FILTER_URI, ?
Uri.encode(number));?
String[] mPhoneNumberProjection = { PhoneLookup._ID, PhoneLookup.NUMBER, PhoneLookup.DISPLAY_NAME };?
Cursor cur = context.getContentResolver().query(lookupUri,mPhoneNumberProjection, null, null, null);?
try {?
? ?if (cur.moveToFirst()) {?
? ? ? return true;?
}?
} finally {?
if (cur != null)?
? ?cur.close();?
}?
return false;?
}?

热点排行