私の RSS リーダー アプリケーションで自動更新機能を作成しようとしています。そのため、任意のボタンをクリックするなどの実行を行わずに、設定するたびにリクエストが送信されます。
次のようなリスト フィールドを使用してフィード アグリゲーターを作成しました。
int i=0;
while (i<vec.size()){
row = new TableRowManager();
prov = new LabelField(((BinNews)vec.elementAt(i)).getProv(),DrawStyle.ELLIPSIS){
protected void paint(Graphics g) {
g.setColor(Color.ORANGERED);
super.paint(g);
}
};
title = new LabelField(((BinNews)vec.elementAt(i)).getTitle(),DrawStyle.ELLIPSIS){
protected void paint(Graphics g) {
g.setColor(Color.BLUE);
super.paint(g);
}
};
desc = new LabelField(((BinNews)vec.elementAt(i)).getDesc(),DrawStyle.ELLIPSIS){
protected void paint(Graphics g) {
g.setColor(Color.BLACK);
super.paint(g);
}
};
date = new LabelField(((BinNews)vec.elementAt(i)).getDate(),DrawStyle.ELLIPSIS){
protected void paint(Graphics g) {
g.setColor(Color.ORANGERED);
super.paint(g);
}
};
link = new LabelField(((BinNews)vec.elementAt(i)).getLink(),DrawStyle.ELLIPSIS){
protected void paint(Graphics g) {
g.setColor(Color.BLACK);
super.paint(g);
}
};
rows.addElement(row);
setSize(rows.size());
row.add(prov);
row.add(date);
row.add(title);
row.add(desc);
i++;
}
自動更新するにはどうすればよいか教えてください。ありがとう!