Advertisement
Guest User

Untitled

a guest
Aug 30th, 2016
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. code.setText(savedcode);
  2.  
  3. code.addTextChangedListener(new TextWatcher() {
  4. @Override
  5. public void beforeTextChanged(CharSequence charSequence, int i, int i1, int i2) {
  6.  
  7. }
  8.  
  9. @Override
  10. public void onTextChanged(CharSequence charSequence, int i, int i1, int i2) {
  11. Toast.makeText(Verification.this, "New Input" , Toast.LENGTH_SHORT ).show();
  12. }
  13.  
  14. @Override
  15. public void afterTextChanged(Editable editable) {
  16.  
  17. }
  18. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement