似乎我不是唯一一个有这个问题的人,但我找不到解决问题的答案。
我创建了一个Label
并Icon
使用WYSIWYG interface designer
.
现在我想在运行时动态更改图标。
逻辑方式是这样的(我的第一次尝试):
ImageIcon newIcon = new ImageIcon("SomePath");
jLabel1.setIcon(newIcon);
当我这样做时,图标只是从界面中消失了,所以我用谷歌搜索了它,有人说要“刷新”图标,这意味着我尝试了它:
ImageIcon newIcon = new ImageIcon("SomePath");
newIcon.getImage().flush();
jLabel1.setIcon(newIcon);
仍然有同样的问题..图标消失了。
我究竟做错了什么 ?
更新(完整方法):
private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {
attempted = myEngine.Attempt('q', word);
if(attempted)
{
this.jTextArea1.setText(myEngine.ChangeEncrypt('q', word, this.jTextArea1.getText()));
}
else
{
JOptionPane.showMessageDialog(null,"The Letter Q is not in the word", "Error",JOptionPane.WARNING_MESSAGE);
jButton1.setEnabled(false);
life ++;
ImageIcon newIcon = myEngine.UpdatePicture(life);
newIcon.getImage().flush();
jLabel1.setIcon(newIcon);
}
这是更新图片方法:
public ImageIcon UpdatePicture(int life)
{
ImageIcon emptyIcon = new ImageIcon();
if (life == 0)
{
ImageIcon iconZero = new ImageIcon("/hang0.gif");
return iconZero;
}
if (life == 1)
{
ImageIcon iconOne = new ImageIcon("/hang1.gif");
return iconOne;
}
if (life == 2)
{
ImageIcon iconTwo = new ImageIcon("/hang2.gif");
return iconTwo;
}
if (life == 3)
{
ImageIcon iconThree = new ImageIcon("/hang3.gif");
return iconThree;
}
if (life == 4)
{
ImageIcon iconFour = new ImageIcon("/hang4.gif");
return iconFour;
}
if (life == 5)
{
ImageIcon iconFive = new ImageIcon("/hang5.gif");
return iconFive;
}
if (life == 6)
{
ImageIcon iconSix = new ImageIcon("/hang6.gif");
return iconSix;
}
return emptyIcon;
}
不确定整个代码是否必要,但它仍然可能会有所帮助。
life 变量从 0 开始。
我检查并在 UpdatePicture 中点击"/hang1.gif";
并返回它。