Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

When I set a TextWatcher to a EditText like

editText1.addTextChangedListener(watcher);

its methods public void onTextChanged(CharSequence s, int start, int count, int after) and afterTextChanged and beforeTextChanged fire, no matter if the EditText has a Text or not. I would assue that these methods are called only after a text change after binding. How can I achiev this or is there something wrong in my logic?

Thanks

Edit:

I setText() before addTextChangedListener.

call stack:

DalvikVM[localhost:8600]
Thread [<1> main] (Suspended)

EditText(TextView).sendOnTextChanged(CharSequence, int, int, int) line: 7875
EditText(TextView).setText(CharSequence, TextView$BufferType, boolean, int) line: 3488
EditText(TextView).setText(CharSequence, TextView$BufferType) line: 3341
EditText.setText(CharSequence, TextView$BufferType) line: 90
EditText(TextView).setText(CharSequence) line: 3316 EditText(TextView).onRestoreInstanceState(Parcelable) line: 3216
EditText(View).dispatchRestoreInstanceState(SparseArray) line: 10079
...

share|improve this question

1 Answer

up vote 0 down vote accepted

Those methods should not fire when you just call addTextChangedListener(TextWatcher). Likely you are just calling setText() or otherwise modifying the text programatically.


This is the source code of android.widget.TextView.addTextChangedListener:

public void addTextChangedListener(TextWatcher watcher) {
    if (mListeners == null) {
        mListeners = new ArrayList<TextWatcher>();
    }
    mListeners.add(watcher);
}
share|improve this answer
I setText() before addTextChangedListener. Is this problematic? – user1324936 Jan 6 at 15:02
Before? It shouldn't be... if you remove that line does it still get called? It's just that there must be a reason for the TextWatcher to be fired. If you can't find why, you can set a boolean flag after you're done setting up the UI and while it's false initially just return from the TextWatcher's methods. Perhaps you're restoring state or something after addTextChangedListener? – Oleg Vaskevich Jan 6 at 15:55
i only setTxt in my onCreate method. if i dont set it nothing happens! I have a ViewPager. The issue happens only if I scroll back to a previously loaded page. I set the TextWatcher to null onDestroyView and create a new one if the Fragment reloads. I checked that the old one gets deleted before onCreateView. – user1324936 Jan 6 at 20:11
The problem is here - setting the TextWatcher to null won't remove it from the EditText! It's already attached to it internally - see this question. You can thus either implement this custom EditText or just use the a flag to disregard the event. For example: 1) set flag to return from TextWatcher, 2) call setText() as needed, 3) unset the flag – Oleg Vaskevich Jan 6 at 23:33
the problem is that editText's onRestoreInstanceState calls the setText. See my call stack. Why I dont know. – user1324936 Jan 7 at 19:26
show 5 more comments

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.