Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to get the text from an EditText, then get the length of my text, every time the user types or deletes values.

I did it with an InputFilter filter but my experience, that the input filter dont listen for delete key.

So for example if the user writes something to my EditText, then deletes all of it, my toast message wont tell me "0", its just stay at "5" for example (the typed text's length)

Is there a way to get back the EditText's text's length value each time the user types or deletes in it ?

share|improve this question

1 Answer

up vote 3 down vote accepted

You should add a TextWatcher using TextView.addTextChangedListener(). Then you will be able to do what you want before, on, or after text changes.

share|improve this answer
Thanks buddy ... – Adam Varhegyi May 16 '12 at 13:56

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.