3秒間隔でスレッドが必要です(httppostを実行し、回答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);