Possible Duplicate:
Marquee effect in Java Swing
我正在尝试获得字幕效果(与 html 中的效果相同)。但我无法使用这段代码来做到这一点。如何改进这段代码以获得跑马灯效果?
import java.awt.event.*;
import javax.swing.*;
import java.awt.*;
class tester {
JLabel l;
tester() {
JFrame fr=new JFrame();
JPanel p=new JPanel();
l=new JLabel("");
fr.add(p);
p.add(l);
fr.setVisible(true);
fr.setSize(400,400);
fr.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
}
public void MarqueeEffect() {
ActionListener ac = new ActionListener() {
public void actionPerformed(ActionEvent ae) {
l.setText("To action alone hast thou a right and never at all to its fruits let not the fruits of action be thy motive; neither let there be in thee any attachment to inaction");
}
};
new Timer(2000,ac).start();
}
public static void main(String args[]) {
tester t=new tester();
t.MarqueeEffect();
}
}
您必须扩展JLabel
并重写paintComponent
才能带来选取框效果。如果不扩展 JLabel,仅仅设置文本是不可能实现的。您可以在自定义的 JLabel 类中执行类似的操作。
protected void paintComponent(Graphics g)
{
g.translate((int)((System.currentTimeMillis() / MARQUEE_SPEED_DIV) % (getWidth() * 2)) - getWidth(), 0);
super.paintComponent(g);
repaint(REPAINT_WITHIN_MS);
}
我是一名优秀的程序员,十分优秀!