是否可以在TextView中覆蓋sendAfterTextChanged(Editable text)
?我需要在某些情況下跳過它,因爲它在我的應用程序中有很長的執行時間。Android TextView - sendAfterTextChanged
0
A
回答
0
是否有可能在TextView中覆蓋
sendAfterTextChanged(Editable text)
?
簡答題:不可以。該方法是封裝私有的。你不能從你的(不同的)包中覆蓋它。
長答案:在Dalvik中存在一個明顯允許這個問題但在ART中被修復的錯誤(參見this answer)。
+0
好了,謝謝你。不幸的是,我不能依靠一個錯誤。 – benderto 2014-11-04 11:47:39
相關問題
- 1. Android TextView
- 2. Android TextView
- 3. Android TextView
- 4. Android XML Textview Bold
- 5. Android - TextView滾動
- 6. onclicklistener textView android
- 7. Android - 大TextView dyanamically
- 8. Android TextView重力
- 9. Android TextView更新
- 10. Vetical textview Android
- 11. Android Textview onTouchEvent
- 12. Android TextView settext()Nullpointer
- 13. android textview arrays
- 14. Android textview缺少
- 15. Android分組TextView
- 16. Android AutoComplete TextView
- 17. Android TextView Lines Collection
- 18. Linkify in android TextView
- 19. Android TextView溢出
- 20. Android TextView字幕
- 21. Android TextView問題
- 22. android textview變量
- 23. TextView in android
- 24. android textview value
- 25. 動態TextView | Android
- 26. Android Textview變黑
- 27. Android Studio,Sql,TextView
- 28. Android TextView Marqee
- 29. Android TextView ellipsize
- 30. Android Wear(Long Textview)
這裏是你的問題的鏈接 http://stackoverflow.com/questions/4283062/textwatcher-for-more-than-one-edittext – 2014-11-04 09:48:40