improve the way contacts are searched by phone numbers
This commit is contained in:
parent
69e3a55a18
commit
6cc0c6ea15
|
@ -96,8 +96,8 @@ class ContactsHelper(val activity: Activity) {
|
|||
Thread {
|
||||
val uri = CommonDataKinds.Phone.CONTENT_URI
|
||||
val projection = arrayOf(ContactsContract.Data.RAW_CONTACT_ID)
|
||||
val selection = "${CommonDataKinds.Phone.NORMALIZED_NUMBER} = ?"
|
||||
val selectionArgs = arrayOf(number.normalizeNumber())
|
||||
val selection = "${CommonDataKinds.Phone.NUMBER} = ? OR ${CommonDataKinds.Phone.NORMALIZED_NUMBER} = ?"
|
||||
val selectionArgs = arrayOf(number, number.normalizeNumber())
|
||||
|
||||
var cursor: Cursor? = null
|
||||
try {
|
||||
|
|
Loading…
Reference in New Issue