android - EditText typing is slow

后端 未结 5 2152
囚心锁ツ
囚心锁ツ 2021-02-09 22:05

I\'ve got an EditText that is SLOW to respond when typing. The lag is annoying enough to cause me to find a solution. I did some research and found an SO thread EditText laggi

5条回答
  •  礼貌的吻别
    2021-02-09 22:50

    When you typing text, the onTextChanged is called again and again, so you are starting an new thread (EditTextWatcherTask) again and again. It will consume many resource of the system.

    As well thread is for the task that need many time to finish it, so in your situation, you don't need a thread, remove the task, just put the computation code in the onTextChanged.

提交回复
热议问题