• title: TrayIconのアニメーション tags: [SystemTray, Icon, Animation] author: aterai pubdate: 2007-02-05T02:07:43+09:00 description: SystemTrayに追加したアイコン(JDK 6以上)をアニメーションさせます。

概要

SystemTrayに追加したアイコン(JDK 6以上)をアニメーションさせます。

サンプルコード

final TrayIcon icon = new TrayIcon(imglist[0], "TRAY", popup);
animator = new javax.swing.Timer(100, new ActionListener() {
  private int idx = 0;
  @Override public void actionPerformed(ActionEvent e) {
    icon.setImage(imglist[idx]);
    idx = (idx + 1) % imglist.length;
  }
});
View in GitHub: Java, Kotlin

解説

16*16の画像を3パターン用意し、これをJDK 6で追加されたTrayIcon#setImage(Image)メソッドを使って切り替えることでアニメーションを行っています。

参考リンク

コメント