1

我正在开发我的第一个 Swing 应用程序。这是一个使用扑克牌的记忆游戏。

我使用 s 模拟卡片JLabel并为正面和背面设置图标。每张卡片都有一个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"),一切正常。图标刷新,然后等待对话框确定。如果不是,则图标永远不会刷新(或超快且不显示)。

如何添加此延迟?

4

1 回答 1

-1

你有没有试过在这个里面放一个therad?

        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();
于 2013-06-08T23:15:03.307 回答