Skip to content

Instantly share code, notes, and snippets.

@igorwojda
Created August 31, 2018 13:39
Show Gist options
  • Save igorwojda/537eddbc8ae8116a33818fcb1f02bc85 to your computer and use it in GitHub Desktop.
Save igorwojda/537eddbc8ae8116a33818fcb1f02bc85 to your computer and use it in GitHub Desktop.
textView.addTextChangedListener(new TextWatcher() {
public void afterTextChanged(Editable s) {
//do something
}
public void beforeTextChanged(CharSequence s, int start, int count, int after) {
//do something
}
public void onTextChanged(CharSequence s, int start, int before, int count) {
//do something
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment