Last active
August 31, 2018 14:45
-
-
Save igorwojda/87d8f952db9a420506ebef64f387ea3f 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
| public interface TextWatcher { | |
| public void beforeTextChanged(CharSequence s, int start, | |
| public void onTextChanged(CharSequence s, int start, int before, int count); | |
| public void afterTextChanged(Editable s); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment