I am working on an application that returns a list of contacts based on keyword after calling an intent. The Keyword can be anything from name to phone number to address to company name.

I am not sure how to actually pass the keyword value to the intent that will launch the contact list. Could anyone please advise on how to achieve this?

I am rather desperate.

Thanks.

link|improve this question

74% accept rate
I would like some more detailed information anyone, please!! – user788511 Feb 10 at 7:18
Any ideas please ? – user788511 Feb 10 at 9:56
feedback

1 Answer

Use Intent.putExtra (String name, String value) to pass your activity the keyword you need to filter the contact list and use this in the SqlLite where clause in order to filter.

link|improve this answer
thanks blackbelt, please please show me some kind of code sample..really appreciate it – user788511 Feb 9 at 16:32
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.