标签: php android performance search
我正在尝试在我的应用中实现服务器端搜索。当用户在EditText中输入任何内容时,我会在doInBackground上致电afterTextChanged。方法doInBackground调用服务器脚本(PHP脚本),该脚本在JSON对象中返回5个值。
EditText
doInBackground
afterTextChanged
当我开始搜索字符串时,这个逻辑使应用程序变慢(打字速度),因为多个doInBackground被调用。