Swing/SlideTableRows のバックアップ(No.10)
- バックアップ一覧
- 差分 を表示
- 現在との差分 を表示
- 現在との差分 - Visual を表示
- ソース を表示
- Swing/SlideTableRows へ行く。
- 1 (2009-04-06 (月) 14:03:11)
- 2 (2011-05-04 (水) 18:58:16)
- 3 (2013-01-10 (木) 17:43:58)
- 4 (2013-12-25 (水) 18:57:48)
- 5 (2014-11-30 (日) 00:44:59)
- 6 (2015-01-25 (日) 18:33:25)
- 7 (2015-08-05 (水) 15:17:18)
- 8 (2017-04-06 (木) 20:38:58)
- 9 (2018-02-24 (土) 19:51:30)
- 10 (2018-03-23 (金) 16:28:34)
- 11 (2020-03-26 (木) 15:08:31)
- 12 (2021-09-30 (木) 09:48:58)
- category: swing
folder: SlideTableRows
title: JTableで行の追加、削除アニメーション
tags: [JTable, Animation]
author: aterai
pubdate: 2009-04-06T14:03:11+09:00
description: JTableの行追加や削除をスライドアニメーションで強調します。
image:
hreflang:
href: https://java-swing-tips.blogspot.com/2009/04/animating-jtable-rows.html lang: en
概要
JTable
の行追加や削除をスライドアニメーションで強調します。
Screenshot
Advertisement
サンプルコード
private void testCreateActionPerformed(ActionEvent e) {
model.addTest(new Test("New name", ""));
(new Timer(DELAY, new ActionListener() {
int i = table.convertRowIndexToView(model.getRowCount() - 1);
int h = START_HEIGHT;
@Override public void actionPerformed(ActionEvent e) {
if (h < END_HEIGHT) {
table.setRowHeight(i, h++);
} else {
((Timer) e.getSource()).stop();
}
}
})).start();
}
private void deleteActionPerformed(ActionEvent evt) {
final int[] selection = table.getSelectedRows();
if (selection.length <= 0) {
return;
}
(new Timer(DELAY, new ActionListener() {
int h = END_HEIGHT;
@Override public void actionPerformed(ActionEvent e) {
h--;
if (h > START_HEIGHT) {
for (int i = selection.length - 1; i >= 0; i--)
table.setRowHeight(selection[i], h);
} else {
((Timer) e.getSource()).stop();
for (int i = selection.length - 1; i >= 0; i--) {
model.removeRow(table.convertRowIndexToModel(selection[i]));
}
}
}
})).start();
}
View in GitHub: Java, Kotlin解説
上記のサンプルでは、javax.swing.Timer
を使用して、徐々に行の高さを変更することで、アニメーションを行っています。
- 行の追加
- 高さ
0
の行を追加したあと、JTable#setRowHeight(int, int)
メソッドを使用してその高さを変更
- 高さ
- 行の削除
- 選択された行の高さを、
JTable#setRowHeight(int, int)
メソッドを使用して変更 - 高さが一定以下になったら、その行を削除
- 選択された行の高さを、