I have a ListView. Each row of it contains 3 TextView\'s and 2 Button\'s. Above it I have an EditText. How can I filter m
create some array list for the listview ..And on "AddTextChangeListener" you can search for similar items in the list and load a new arraylist for the searched text...
edittext.addTextChangedListener(new TextWatcher(){
public void afterTextChanged(Editable s) {
//search for the keyword and add the items to a new arraylist
}