Skip to content

Instantly share code, notes, and snippets.

@sharifulislam52
Last active April 6, 2018 17:38
Show Gist options
  • Save sharifulislam52/70bf04e842d426161d878174fa2354d7 to your computer and use it in GitHub Desktop.
Save sharifulislam52/70bf04e842d426161d878174fa2354d7 to your computer and use it in GitHub Desktop.
All about android EditText
editText.addTextChangedListener(new TextWatcher() {
@Override
public void beforeTextChanged(CharSequence charSequence, int i, int i1, int i2) {}
@Override
public void onTextChanged(CharSequence charSequence, int i, int i1, int i2) {}
@Override
public void afterTextChanged(Editable editable) {}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment