Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- @OnClick(R.id.test)
- void pasteTest() {
- mEdit_jwt_token.setText("lkjlkjljl");
- }
- ....
- mEdit_jwt_token.addTextChangedListener(new TextWatcher() {
- public void afterTextChanged(Editable s) {
- observerEditTextJot(s.toString());
- }
- public void beforeTextChanged(CharSequence s, int start, int count, int after) {
- }
- public void onTextChanged(CharSequence s, int start, int before, int count) {
- pasteTest(); <--- HERE
- Log.i(TAG, "Proverka start:" + String.valueOf(start));
- Log.i(TAG, "Proverka before:" + String.valueOf(before));
- Log.i(TAG, "Proverka count:" + String.valueOf(count));
- }
- });
Advertisement
Add Comment
Please, Sign In to add comment