The PokedexArrayAdapter class was created for displaying custom rows within the ListView. One important feature missing is the ability to filter (search) within the set contained by the array.
Implement the search logic through the Filter class implementation of the array adapter. This is a straightforward comparison operation to discriminate against elements in a set.
The PokedexArrayAdapter class was created for displaying custom rows within the ListView. One important feature missing is the ability to filter (search) within the set contained by the array. Implement the search logic through the Filter class implementation of the array adapter. This is a straightforward comparison operation to discriminate against elements in a set.