JScrollPane - 平滑滚动

时间:2012-11-25 11:25:11

标签: java swing scroll jscrollpane

我有一个JScrollPane具有适度高的块增量(125)。我想对其应用平滑/慢速滚动,以便在滚动时不会跳转(或跳过)。我怎么能这样做?

我在考虑像Windows 8一样滚动。

非常感谢任何帮助!

1 个答案:

答案 0 :(得分:1)

您可以在滚动期间使用javax.swing.Timer来实现平滑滚动效果。如果您从组件外部触发此操作,则此类操作将起作用(component中的组件JScrollPane):

final int target = visible.y;
final Rectangle current = component.getVisibleRect();
final int start = current.y;
final int delta = target - start;
final int msBetweenIterations = 10;

Timer scrollTimer = new Timer(msBetweenIterations, new ActionListener() {
    int currentIteration = 0;
    final long animationTime = 150; // milliseconds
    final long nsBetweenIterations = msBetweenIterations * 1000000; // nanoseconds
    final long startTime = System.nanoTime() - nsBetweenIterations; // Make the animation move on the first iteration
    final long targetCompletionTime = startTime + animationTime * 1000000;
    final long targetElapsedTime = targetCompletionTime - startTime;

    @Override
    public void actionPerformed(ActionEvent e) {
        long timeSinceStart = System.nanoTime() - startTime;
        double percentComplete = Math.min(1.0, (double) timeSinceStart / targetElapsedTime);

        double factor = getFactor(percentComplete);
        current.y = (int) Math.round(start + delta * factor);
        component.scrollRectToVisible(current);
        if (timeSinceStart >= targetElapsedTime) {
            ((Timer) e.getSource()).stop();
        }
    }
});
scrollTimer.setInitialDelay(0);
scrollTimer.start();

getFactor方法是从线性到缓动函数的转换,可以根据您的需要实现其中之一:

private double snap(double percent) {
    return 1;
}

private double linear(double percent) {
    return percent;
}

private double easeInCubic(double percent) {
    return Math.pow(percent, 3);
}

private double easeOutCubic(double percent) {
    return 1 - easeInCubic(1 - percent);
}

private double easeInOutCubic(double percent) {
    return percent < 0.5
            ? easeInCubic(percent * 2) / 2
            : easeInCubic(percent * -2 + 2) / -2 + 1;
}

这可能也适用于在组件中工作,所以当用户滚动时,它会沿着这些线做某事。

或者,如果可能的话,你可以使用JavaFX,它比Swing更好地支持动画。