Created
November 27, 2020 01:52
-
-
Save kolanse/c565d282c1ab373f8f47d1999239cae2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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