I have vector of EditTexts that I'm dynamically generating and dynamically adding addTextChangedListeners.
The issue is that the returned Editable on "afterTextChanged" doesn't let me know which EditText this listener is associated with.
Is there a way to call the respective EditText from within the TextWatcher?
Thanks,