i have an app in which i am displaying data from json into listview,and now want to apply searching functionality on the listview.but whenever i typing something in the editbox
Why are you apply the toString method here:
adapter.getFilter().filter(s.toString());
When the filtering method seems to need chars:
performFiltering(CharSequence constraint)