I am unable to search from listview
, i tried various ways, but its not working for me(No Errors). I have other way to search but i want to make this way possible.>
1) Call mListview.setTextFilterEnabled(true);
on the ListView to enable filtering
2) Create a relevant constructor for your CustomAdapter
class. You'll need to pass it context as well as various resources/data. Read up on it:
http://developer.android.com/reference/android/widget/ArrayAdapter.html
OR
Use a TextWatcher
linked here.