I am working on an Android Contact application and I would like to implement contact lookup using one particular keyword.
This keyword can be either the contact name, phone, email, and so on. Is this possible? And if so, could anyone please point me in the right direction.
Thanks.
[RE-EDIT]
I was wondering is it okay to use this to lookup the keyword?
Cursor cur = this.context.getContentResolver().query(
ContactsContract.PhoneLookup.CONTENT_FILTER_URI,
null,
ContactsContract.PhoneLookup.LOOKUP_KEY + " like '" + keyword + "%'",
null,
null);