Icon icon = new ImageIcon(getClass().getResource( "/img/icon.gif" ) );
aButton = new JButton("Its a button", icon);
是否有某种方法可以阻止动画播放?
我正在考虑分配gif的静态jpg,然后当我悬停时,分配动画gif,但我不认为在MouseMotionListener
中有一个取消鼠标的事件所以我可以加载回静态jpg
按钮中的gif循环,但如果我将鼠标悬停在按钮上,它就会消失。
如果鼠标光标不在按钮上,如何使gif保持静态?
如果我使用MouseMotionListener
,如果我取下鼠标会触发事件吗?
@Override
public void mouseMoved(MouseEvent e) {
//play the gif
//if I take mouse off, call some method to stop playing animated gif
}
@Override
public void mouseDragged(MouseEvent e) {
}
答案 0 :(得分:5)
请参阅:
setIcon(Icon)
setDisabledIcon(Icon)
setPressedIcon(Icon)
setRolloverIcon(Icon)
setSelectedIcon(Icon)
无需设置显式鼠标侦听器,自动进行转换。
E.G。在此示例中,我没有添加MediaTracker
,因此将图像弹出到标签中以允许加载时间。最终用户是ImageObserver
(等到你在解除第一个对话框之前看到它旋转)。
import java.awt.*;
import java.awt.image.BufferedImage;
import java.net.URL;
import javax.swing.*;
public class ImageSwapOnButton {
public static void main( String[] args ) throws Exception {
URL url = new URL("http://1point1c.org/gif/thum/plnttm.gif");
Image image = Toolkit.getDefaultToolkit().createImage(url);
ImageIcon spinIcon = new ImageIcon(image);
JOptionPane.showMessageDialog(null, new JLabel(spinIcon));
// create a static version of this icon
BufferedImage bi = new BufferedImage(150,150,BufferedImage.TYPE_INT_ARGB);
Graphics g = bi.getGraphics();
g.drawImage(image,0,0,null);
g.dispose();
ImageIcon staticIcon = new ImageIcon(bi);
JButton button = new JButton(staticIcon);
button.setRolloverIcon(spinIcon);
JOptionPane.showMessageDialog(null, button);
}
}
另外,请勿将静态图像设为JPEG。 JPEG是有损的,不支持透明度。使用单帧GIF或PNG。
答案 1 :(得分:-1)
button.setIcon(new ImageIcon("/*icon location*/"));
button.setRolloverIcon(new ImageIcon("/*icon location*/"
当鼠标指针移过按钮时,动画gif图像不会被隐藏。