davs
davs

Reputation: 9406

Android. Searching over the listView

I have activity with ListView. That listView contains imageView and two textViews (aka first and last names). I want to organize searching with this listView by one of textView (e.g. by last name). How can I implement that?

I found that Quick Search Box can be used but I didn't understand how to work with it.

Help, plz :)

Upvotes: 1

Views: 3788

Answers (1)

Vasu
Vasu

Reputation: 4982

You can use setTextFilterEnabled(boolean) method.

If it does not solve your problem then you can also define your own filter.

For this please see this post android-how-do-i-overwrite-the-filter-for-my-arrayadapter

Hope this helps !!

Upvotes: 1

Related Questions