如何降低无限进度动画速度

How to reduce InfiniteProgress animation speed

我目前正在使用自定义动画图像来代替默认图像。

我想让IP慢慢旋转,有没有办法改变动画速度?

没有

我们将添加如下内容:

/**
 * The animation rotates with EDT ticks, but not for every tick. To slow down the animation increase this
 * number and to speed it up reduce it to 1. It can't be 0 or lower.
 * @param tickCount the tickCount to set
 */
public void setTickCount(int tickCount);

/**
 * The angle to increase (in degrees naturally) in every tick count, reduce to 1 to make the animation perfectly
 * slow and smooth, increase to 45 to make it fast and jumpy. Its probably best to use a number that divides well
 * with 360 but that isn't a requirement. Valid numbers are anything between 1 and 359.
 * @param angleIncrease the angleIncrease to set
 */
public void setAngleIncrease(int angleIncrease);