I have an ArrayAdapter wrapped around an ArrayList of custom objects. I'd like to write a custom filter for that adapter so that when I call getListAdapter().getFilter().filter("abc") the list will get filtered by an arbitrary transformation of "abc".

I thought I would just try to override ArrayAdapter.getFilter(), but that requires I re-implement the private ArrayAdapter.ArrayFilter which requires access to a bunch of ArrayAdapter's private instances.

What's the simplest way to do this?

link|improve this question

67% accept rate
I would also love to see an answer to this question. – yock Nov 20 '10 at 21:41
1  
I had the same problem. I ended up writing a blog post about this issue, and uploading an alternatative adapter implementation. I leave the link for future reference: blogactivity.wordpress.com/2011/08/28/filterable-adapter – uʍop ǝpısdn Aug 28 '11 at 17:22
feedback

1 Answer

First, take a look at the source code of ArrayAdapter.

You'll notice that it has private field mFilter that's only used in getFilter() method. So, just extend ArrayAdapter and override getFilter() to return your Filter.

It's best to implement your Filter the same way as ArrayFilter: as private inner class, so it has access to private fields of ArrayAdapter.

Let me know if this is enough info to complete the task.

link|improve this answer
1  
Thinking through this, help me understand something. I have examined the source of the ArrayAdapter and inner ArrayFilter classes, and I notice that ArrayFilter directly manipulates the private member variables of ArrayAdapter. If I understand your solution correctly, would I not need to implement my own Adapter and Filter classes? This is the conclusion I came to on my own. I was hoping the bounty would lead to more creative solutions that involved less custom code. I didn't think this was possible, however, given that ArrayFilter is private. – yock Nov 22 '10 at 14:09
Thanks for your suggestion Peter, but that is essentially the solution I was hoping to avoid. As yock mentions, it requires copying or reimplementing large amounts of code. I'd like to find a more elegant solution if possible – emmby Nov 22 '10 at 18:47
You only have to extend ArrayAdapter and override getFilter() - that's about 5 lines of code. Then you have to implement a Filter. Currently ArrayFilter is 60 lines of code. I don't know what kind of filtering you'd like to do but it is probably going to be of similar length. I can write this in under 30 min, yet this question is already open 3 days. – Peter Knego Nov 22 '10 at 19:49
If you tell me what kind of filtering you'd like to do I'll write it for you, just for kicks. – Peter Knego Nov 22 '10 at 19:50
You are right - ArrayFilter uses a lot of ArrayAdapter's private fields. Then you just need to copy the whole ArrayAdapter and change the code you need. Not 'elegant' but it would work. This is no more work than I anticipated. – Peter Knego Nov 22 '10 at 19:53
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

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