• title: JTableのセルの高さを自動調整 tags: [JTable, JTextArea, TableCellRenderer] author: aterai pubdate: 2010-10-25T14:24:03+09:00 description: JTableのセルの高さを、文字列の折り返しに応じて自動調整します。

概要

JTableのセルの高さを、文字列の折り返しに応じて自動調整します。

サンプルコード

private List<List<Integer>> rowAndCellHeightList= new ArrayList<>();
private void adjustRowHeight(JTable table, int row, int column) {
  //int cWidth = table.getTableHeader().getColumnModel().getColumn(column).getWidth();
  //int cWidth = table.getCellRect(row, column, false).width; //セルの内余白は含めない
  //setSize(new Dimension(cWidth, 1000)); //注目
  setBounds(table.getCellRect(row, column, false)); //もしくはsetBoundsを使用する
  //doLayout(); //必要なさそう

  int preferredHeight = getPreferredSize().height;
  while (rowAndCellHeightList.size() <= row) {
    rowAndCellHeightList.add(new ArrayList<Integer>(column));
  }
  List<Integer> cellHeightList = rowAndCellHeightList.get(row);
  while (cellHeightList.size() <= column) {
    cellHeightList.add(0);
  }
  cellHeightList.set(column, preferredHeight);
  //JDK 1.8.0: int max = cellHeightList.stream().max(Integer::compare).get();
  int max = preferredHeight;
  for (int h: cellHeightList) {
    max = Math.max(h, max);
  }
  if (table.getRowHeight(row) != max) {
    table.setRowHeight(row, max);
  }
}
View in GitHub: Java, Kotlin

解説

上記のサンプルでは、セルレンダラーに、setLineWrap(true)としたJTextAreaを使用し、カラムサイズの変更などがあったときに、そのJTextAreaの高さを取得してJTable#setRowHeight(int)メソッドで各行の高さとして設定しています。

参考リンク

コメント