我正在开发我的第一个Swing应用程序。这是一款使用扑克牌的记忆游戏。
我使用JLabel
s模拟卡片并设置正面和背面的图标。每张卡都有MouseListener
,当用户点击时,我会检查两张卡是否相同。如果它们不是同一张卡片,我想显示这两张卡片一两秒钟,在此延迟之后,更换图标。
我尝试使用sleep
,wait
,invokeLater
,invokeAndWait
......但没有任何效果。
这是我的主要课程:
public class Main {
public static void main(String[] args) throws FontFormatException, IOException {
SwingUtilities.invokeLater(new Runnable() {
@Override
public void run() {
try {
MyApp window = new MyApp();
} catch ( FontFormatException | IOException ex) {
Logger.getLogger(Main.class.getName()).log(Level.SEVERE, null, ex);
}
}
});
}
}
MyApp
继承自JFrame
。在其中,我将所有卡片添加到一个面板中:
while ( cont < cardsInGame.size() ){
this.cardsInGame.get(cont).setBounds(x, y, 100, 140);
panelTablero.add(cardsInGame.get(cont));
cardsInGame.get(cont).addMouseListener(this);
x = x+108+5;
if ( (cont+1)%8 == 0 && cont != 0){
y = y+140+15;
x = 53;
}
cont++;
}
这是MouseListener:
public void mouseClicked(MouseEvent e) {
Card selectedCard = (Card)e.getSource();
if (selectedCard != activeCard){
selectedCard.setIcon(new ImageIcon("img/"+selectedCard.getSuit()+selectedCard.getValue()+".png"));
//JOptionPane.showMessageDialog(vp, "Wait");
if ( activeCard != null && !activeCard.getPaired()) {
int result = activeCard.isPair(selectedCard);
pairsTried++;
if ( result != 0 ){
// PAIR
}
else{
// I WANT TO WAIT HERE
// NO PAIR
selectedCard.setIcon(new ImageIcon(CARD_BACK));
activeCard.setIcon(new ImageIcon(CARD_BACK));
}
activeCard = null;
}
else{
activeCard = selectedCard;
}
}
}
如果我在代码中拨打JOptionPane.showMessageDialog(vp, "Wait")
,那么一切正常。刷新图标,然后等待对话框确定。如果没有,图标永远不会刷新(或超快并且不显示)。
如何添加此延迟?
答案 0 :(得分:-1)
你有没有试过在其他地方放一个线程?
Runnable r = new Runnable() {
public void run() {
try {
Thread.sleep(2000);
} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
};
Thread asd = new Thread(r);
asd.start();