gpt4 book ai didi

android - TextWatcher 工作到很晚

转载 作者:行者123 更新时间:2023-11-30 04:06:39 27 4
gpt4 key购买 nike

在我按下退格键之后,我的 textwatcher 开始工作,然后那个建议出现了。我有一个 textwatcher,可以从网络生成书籍列表。我也等着看它是否是一个网络问题。但我发现不是因为那个,当我按退格键时它开始正常工作。请帮忙

textWatcher = new TextWatcher() 
{
public void afterTextChanged(Editable s)
{
chars = s;
currentSearch = s;
startSuggestionsThread(s);
}

public void beforeTextChanged(CharSequence s, int start, int count, int after) {
}

public void onTextChanged(CharSequence s, int start, int before, int count){
}
};

我启动建议线程我正在做 textview.setAdapter(adapter)。但它需要很多时间

最佳答案

也许您正在 TextWatcherafterTextChanged 方法中使用您的逻辑。将您的代码移动到 beforeTextChanged 以便在 EditText

中更改文本之前运行您的代码

关于android - TextWatcher 工作到很晚,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11522887/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com