Created
August 31, 2018 13:39
-
-
Save igorwojda/537eddbc8ae8116a33818fcb1f02bc85 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
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