我需要一个线程(它执行 httppost,并在 3 秒间隔内解析答案 xml 并刷新列表视图以设置从解析的 xml 的更改)
我已经尝试过这段代码
定时器 timer = new Timer(); timer.scheduleAtFixedRate(
new TimerTask() {
public void run() {
try {
httpPostList(url);
saxParseList();
list.invalidateViews();
Thread.sleep(1000);
} catch (Exception ie) {
}
}
}, 1000, 1000 * 30);