How can I filter ListView data when typing on EditText in android

  1. Add TextWatcher to EditText#addTextChangedListener
  2. In onTextChanged add or remove items from your ListView‘s adapter. If you are subclassing ArrayAdapter it would have add and remove methods

Leave a Comment