mirror of
https://github.com/SimpleMobileTools/Simple-Contacts.git
synced 2025-02-11 09:00:52 +01:00
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…
x
Reference in New Issue
Block a user