Skip to content

Instantly share code, notes, and snippets.

@kolanse
Created November 27, 2020 01:52
Show Gist options
  • Save kolanse/c565d282c1ab373f8f47d1999239cae2 to your computer and use it in GitHub Desktop.
Save kolanse/c565d282c1ab373f8f47d1999239cae2 to your computer and use it in GitHub Desktop.
var myEditText = findViewById<EditText>(R.id.myEditText)
myEditText.doOnTextChanged { text, start, before, count ->
run {
// run your code here.
// the text is the changed text
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment