• category: swing folder: ListCellAnimation title: JListのセルのアニメーション tags: [JList, ListCellRenderer, Animation] author: aterai pubdate: 2006-11-27 description: JListの選択されたセルをアニメーションさせます。 image: https://lh4.googleusercontent.com/_9Z4BYR88imo/TQTPa7B8VkI/AAAAAAAAAd8/uLpJ50Oxwf8/s800/ListCellAnimation.png

概要

JListの選択されたセルをアニメーションさせます。

サンプルコード

class AnimeListCellRenderer extends JPanel implements ListCellRenderer {
  private static final Color selectedColor = new Color(230, 230, 255);
  private final AnimeIcon icon = new AnimeIcon();
  private final MarqueeLabel label = new MarqueeLabel();
  private final javax.swing.Timer animator;
  private final JList list;
  private boolean isRunning = false;
  public AnimeListCellRenderer(final JList l) {
    super(new BorderLayout());
    this.list = l;
    animator = new Timer(80, new ActionListener() {
      @Override public void actionPerformed(ActionEvent e) {
        int i = l.getSelectedIndex();
        if (isRunning = (i >= 0)) {
          l.repaint(l.getCellBounds(i, i));
        }
      }
    });
    setOpaque(true);
    add(icon,  BorderLayout.WEST);
    add(label);
    animator.start();
  }
  @Override public Component getListCellRendererComponent(JList list, Object object,
      int index, boolean isSelected, boolean cellHasFocus) {
    setBackground(isSelected ? selectedColor : list.getBackground());
    label.setText((object == null) ? "" : object.toString());
    animate_index = index;
    return this;
  }
  private boolean isAnimatingCell() {
    return isRunning && animate_index == list.getSelectedIndex();
  }
  int animate_index = -1;
  private class MarqueeLabel extends JLabel {
  //...
View in GitHub: Java, Kotlin

解説

上記のサンプルでは、セルが選択されると左のアイコンがアニメーションし、文字列がクリップされている場合は、スクロールするようになっています。

選択されたセルだけ再描画しているのではなく、ActionListenerを実装したセルレンダラーを作成してJList全体をrepaintしています。 選択されたセルだけ再描画してアニメーションを行っています。

参考リンク

コメント