Skip to content

Instantly share code, notes, and snippets.

@abircse
Created March 20, 2021 09:57
Show Gist options
  • Save abircse/eca2ef14c5d39fe7919e716704b93d05 to your computer and use it in GitHub Desktop.
Save abircse/eca2ef14c5d39fe7919e716704b93d05 to your computer and use it in GitHub Desktop.
EdittextSearchListener
YOUR_SEARCH_EDITTEXT.addTextChangedListener(object : TextWatcher {
override fun beforeTextChanged(s: CharSequence, start: Int, count: Int, after: Int) {}
override fun onTextChanged(s: CharSequence, start: Int, before: Int, count: Int) {}
override fun afterTextChanged(s: Editable) {
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment