How can i build a search bar where while i'm typing the results are shown in the list view in which i'm searching?

For example, i have a list view with 20 strings. I press the search key and appears the bar. I want when i type 3 words or more the search starts running showing the results in the list view (as a filter: only shows the strings in the list that matching what i type)

link|improve this question

feedback

4 Answers

up vote 5 down vote accepted

You can't do this with the search bar. But the listview has a possibility to filter on key pressed, like it is done in the contacts. The user simply starts typing and the list gets filtered then. Filtering is not really like searching. If you list contains the word foo somewhere and you type oo foo will be filtered out, but if you type fo it will stay even if the list item is call bar foo.

You simply have to enable it:

ListView lv = getListView();
lv.setTextFilterEnabled(true);

I don't know how this is done if you don't have a hardware keyboard. I'm using the droid and starting to type starts the list to filter and to show only matching results.

link|improve this answer
ok, it isn't exactly what i need but it's a good solution. thanks! – xger86x Mar 4 '10 at 10:42
feedback

The best way is to use the built in search bar or SearchManager by overriding onSearchRequested in a searchable activity. You can set a datasource to search on to get the automatic drop down of results or you can just take in the input from the user and search after. Here is a good overview of SearchManager is a Plus there is a working demo in the API Demos project com.example.android.apis.app.SearchQueryResult

@Override
public boolean onSearchRequested() {
link|improve this answer
1  
yes.. but i don't want to get an automatic drop down results. I want the list where i'm seaching automatic refresh with the results of the search while i'm typing, not appears a drop down menu. Thanks! – xger86x Mar 3 '10 at 23:58
ahh, sorry i misunderstood the question. Without building your own custom view and trying to jump to listitems on keypress events I don't know of anything better off hand. – Patrick Kafka Mar 4 '10 at 0:04
feedback

A very good Example is at http://www.androidpeople.com/android-listview-searchbox-sort-items

link|improve this answer
3  
This solution creates a new data array and a new ListAdapter for every character typed. I can't believe this is the best way to do it.. – Thomas Ahle Aug 26 '10 at 14:06
1  
feedback

I used an EditText to do the job.

First I created two copies of the array to hold the list of data to search:

List<Map<String,String>> vehicleinfo;
List<Map<String,String>> vehicleinfodisplay;

Once I've got my list data from somewhere, I copy it:

for(Map<String,String>map : vehicleinfo)
{
    vehicleinfodisplay.add(map);
}

and use a SimpleAdapter to display the display (copied) version of my data:

String[] from={"vehicle","dateon","dateoff","reg"};
int[] to={R.id.vehicle,R.id.vehicledateon,R.id.vehicledateoff,R.id.vehiclereg};
listadapter=new SimpleAdapter(c,vehicleinfodisplay,R.layout.vehiclelistrow,from,to);
vehiclelist.setAdapter(listadapter);

Then I added a TextWatcher to the EditText which responds to an afterTextChanged event by clearing the display version of the list and then adding back only the items from the other list that meet the search criteria (in this case the "reg" field contains the search string). Once the display list is populated with the filtered list, I just call notifyDataSetChanged on the list's SimpleAdapter.

searchbox.addTextChangedListener(new TextWatcher()
{
    @Override
    public void afterTextChanged(Editable s)
    {
        vehicleinfodisplay.clear();
        String search=s.toString();
        for(Map<String,String>map : vehicleinfo)
        {
            if(map.get("reg").toLowerCase().contains(search.toLowerCase()))
                vehicleinfodisplay.add(map);
            listadapter.notifyDataSetChanged();
        }
    };
    ... other overridden methods can go here ...
});

Hope this is helpful to someone.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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