阅读量:0
在Java中,你可以使用Swing库来实现一个平滑的进度条动画。以下是一个简单的示例:
- 首先,导入所需的库:
import javax.swing.*; import java.awt.*; import java.awt.event.ActionEvent; import java.awt.event.ActionListener;
- 创建一个自定义的JProgressBar类,用于绘制平滑的进度条:
class SmoothProgressBar extends JProgressBar { private int currentValue = 0; private Timer timer; public SmoothProgressBar() { setMinimum(0); setMaximum(100); setSize(300, 30); setLocation(100, 100); timer = new Timer(10, new ActionListener() { @Override public void actionPerformed(ActionEvent e) { currentValue++; if (currentValue > getMaximum()) { currentValue = getMaximum(); timer.stop(); } repaint(); } }); } public void startAnimation() { timer.start(); } }
- 在主类中创建一个JFrame,并将自定义的SmoothProgressBar添加到窗口中:
public class SmoothProgressBarExample { public static void main(String[] args) { SwingUtilities.invokeLater(new Runnable() { @Override public void run() { createAndShowGUI(); } }); } private static void createAndShowGUI() { JFrame frame = new JFrame("Smooth Progress Bar Animation"); frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); SmoothProgressBar progressBar = new SmoothProgressBar(); frame.add(progressBar); frame.pack(); frame.setLocationRelativeTo(null); frame.setVisible(true); progressBar.startAnimation(); } }
现在运行这个程序,你将看到一个平滑滚动的进度条动画。你可以根据需要调整进度条的样式、大小和位置。