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
...