ボタンをクリックすると画像が表示されるように、LWUIT を使用してアプリケーションを作成しようとしています。次のコードがあります。ただし、ボタンを 2 回クリックすると例外が発生します。例外なく画像を表示するのを手伝ってください。
final Form f = new Form("Static TAF");
Button TrackMe = new Button("TrackMe");
Image TrackMeicon = null;
TrackMeicon = Image.createImage("/hello/follow.jpeg");
final Label TrackMeLabel = new Label(TrackMeicon);
TrackMe.addActionListener(new ActionListener()
{
public void actionPerformed(ActionEvent ae)
{
System.out.println("Removing the previous Images");
f.addComponent(TrackMeLabel);
}
});
助けてください