I want that on each key press I require to change the Counter some what similar to Tweeter Thing but the issue is that OnEditorActionListener only calls for the change while the user presses Enter or Done key, Please Can I Find a Resolution for this
I want that on each key press I require to change the Counter some
Share
You could use an
OnKeyListenerif you do really want to catch keystrokes.However, if what you’re really interested in is knowing when the text in an
EditTextView has changed you might find it easier to use aTextWatcher. You would put your code which updates something based on the context of theEditTextin theafterTextChanged()method.