Is it possible to override sendAfterTextChanged(Editable text)
in TextView? I need to skip it in certain situations because it has really long execution time in my app.
Asked
Active
Viewed 204 times
0

benderto
- 896
- 11
- 39
-
Here is a link to your question http://stackoverflow.com/questions/4283062/textwatcher-for-more-than-one-edittext – Adrian Totolici Nov 04 '14 at 09:48
1 Answers
0
Is it possible to override
sendAfterTextChanged(Editable text)
in TextView?
Short answer: No. This method is package private. You can't override it from your (different) package.
Long answer: There exists a bug in Dalvik which apparently allowed this but was fixed in ART (see this answer).