所以我想做的基本上是当用户在EditText中键入时,我基本上想搜索所有以EditText中的任何字符开头的单词(通过执行EditText.getText().toString()来实现)。我在我的EditText中添加了一个TextChangedListener,每当用户键入任何字符时,它调用名为"addResults"的方法,该方法使用以下代码:
public void addResults(final String prefix){
if(thread != null){
try{
thread.wait();
thread.interrupt();
thread.suspend();
thread.destroy();
thread.stop();
thread = null;
}catch(Exception e){
}
}
results.clear();
resultsArray = null;
this.prefix = prefix;
thread = new Thread(
new Runnable(){
public void run(){
try{
URL url = new URL(String.format(WORD_URL, prefix));
URLConnection connection = url.openConnection();
connection.setReadTimeout(Timeout.TIMEOUT);
connection.setConnectTimeout(Timeout.TIMEOUT);
InputStream is = connection.getInputStream();
Scanner reader = new Scanner(is);
while(reader.hasNextLine()){
String line = reader.nextLine();
if(line != null){
if(line.contains(String.format(CHECKER, prefix))){
String[] s = line.split(String.format(CHECKER, prefix));
String[] s2 = s[1].split(INIT_SPLIT);
if(s2.length > 0){
for(int i = 1; i < s2.length; i++){
String l = s2[i];
String[] split = l.split(SECOND_SPLIT);
results.add(new Result(prefix, split[0].trim()));
}
}
break;
}
}
}
resultsArray = WordSearcher.toArray(results);
handler.sendMessage(handler.obtainMessage());
reader.close();
}catch(Exception e){
e.printStackTrace();
}
}
}
);
thread.start();
}
这种方法没有错,它确实得到了正确的单词和所有的东西,但问题是,如果用户在尝试获取单词时键入,它似乎不会更新(仍然显示旧搜索的结果)。在我的Handler中,我基本上只是将ListView的适配器设置为该方法生成的字符串数组(resultsArray)。我能想到的一些可能的解决方案是立即停止线程的执行,或者找到一种方法,如果用户在线程运行时键入内容,让它取消以前的请求,并让它处理EditText中的当前文本。任何其他解决方案都将不胜感激。谢谢
注意:如果线程在用户键入之前完成执行,则工作正常。只有当线程仍在执行并且用户开始键入时,它才会成为一个问题。
可能,您在try
下的代码并不像您期望的那样工作。我相信,它实际上并没有停止上一个线程(请参阅已弃用的方法文档suspend()、destroy()和stop())。看起来您可能有多个同时运行的线程,并且只收到一条消息。我建议在可运行的in while循环中检查isInterrupted()(如Thread.currentThread().isInterrupted)),如果线程被中断,则不要发送消息。