• 追加された行はこの色です。
  • 削除された行はこの色です。
---
category: swing
folder: DifferentCellHeight
title: JListで異なる高さのセルを使用
tags: [JList, JTextArea, ListCellRenderer]
author: aterai
pubdate: 2006-05-15T09:36:24+09:00
description: JListのレンダラーにJTextAreaを使って、異なる高さのセルを作成します。
image: https://lh6.googleusercontent.com/_9Z4BYR88imo/TQTK2Z8UOTI/AAAAAAAAAWo/7GoDkuVX8Fc/s800/DifferentCellHeight.png
---
* 概要 [#summary]
`JList`のレンダラーに`JTextArea`を使って、異なる高さのセルを作成します。

#download(https://lh6.googleusercontent.com/_9Z4BYR88imo/TQTK2Z8UOTI/AAAAAAAAAWo/7GoDkuVX8Fc/s800/DifferentCellHeight.png)

* サンプルコード [#sourcecode]
#code(link){{
class TextAreaRenderer extends JTextArea implements ListCellRenderer<String> {
  private Border focusBorder;
  private static final Border NOMAL_BORDER =
    BorderFactory.createEmptyBorder(2, 2, 2, 2);
  private static final Color EVEN_COLOR = new Color(230, 255, 230);
  @Override public Component getListCellRendererComponent(
      JList list, String str, int index,
      boolean isSelected, boolean cellHasFocus) {
    //setLineWrap(true);
    setText(Objects.toString(str, ""));
    if (isSelected) {
      setBackground(list.getSelectionBackground());
      setForeground(list.getSelectionForeground());
    } else {
      setBackground(index % 2 == 0 ? EVEN_COLOR : list.getBackground());
      setForeground(list.getForeground());
    }
    if (cellHasFocus) {
      if (focusBorder == null) {
        focusBorder = new DotBorder(
            new Color(~list.getSelectionBackground().getRGB()), 2);
      }
      setBorder(focusBorder);
    } else {
      setBorder(NOMAL_BORDER);
    }
    return this;
  }
}

private DefaultListModel makeList() {
  DefaultListModel model = new DefaultListModel();
  model.addElement("一行");
  model.addElement("一行目\n二行目");
  model.addElement("一行目\n二行目\n三行目");
  model.addElement("四行\n以上ある\nテキスト\nの場合");
  return model;
}
}}

* 解説 [#explanation]
- 右: デフォルトの`JList`
- 左: 複数行に対応した`JList`
-- `JList#getFixedCellHeight()`が`-1`で、`ListCellRenderer`に`JTextArea`を使用しているため、テキストに`\n`を含めることで複数行を作成することが可能

-- `JList#getFixedCellHeight()`が`-1`で、`ListCellRenderer`に`JTextArea`を使用しているため、テキストに`\n`を含めることで複数行が表示可能
- セルの選択状態
-- %%`JTextArea`にセルフォーカスがある状態を表現するために、`LineBorder`を継承して作成した`DotBorder`を使用%%
-- `UIManager.getBorder("List.focusCellHighlightBorder")`を使用するように変更

* 参考リンク [#reference]
- [https://docs.oracle.com/javase/jp/8/docs/api/javax/swing/JList.html#setFixedCellHeight-int- JList#setFixedCellHeight(int) (Java Platform SE 8)]

* コメント [#comment]
#comment
#comment