0

我编写了一个使用 CardLayout 的程序。我希望它显示一个 JPanel,然后根据用户的输入显示一个新的 JPanel,暂停 3 秒,然后显示另一个需要用户输入的 JPanel。

我的 JPanel 需要用户输入工作正常,我所做的调试表明,当程序暂停 3 秒时,正在生成“填充”面板(见下文),但只是没有正确呈现。

class sylBetween extends JPanel{

    sylBetween(boolean response, String fileName){
        super();
        setSize(1365,725);
        JLabel cross = new JLabel("+");
        JLabel display;
        boolean feedback = myParticipant.getFeedbackTF();
        if(feedback){

            String v = syllogism.getSyllValidity(fileName);
            if(v.equals("V")&&response==true||v.equals("I")&&response==false){
                display=new JLabel("Correct");          
            }
            else{
                display=new JLabel("Incorrect");
            }

            add(display);
        }
        else{
            add(cross);
        }
    }
}

我认为问题出在这段代码中,但我不知道为什么:

    public void actionPerformed(ActionEvent e) {

        String name = s[currentTrial].getFN();

        boolean answerTF = false;
        if(e.getSource()==s[currentTrial].yes){
            answerTF=true;
        }
        else if(e.getSource()==s[currentTrial].no){
            answerTF=false;
        }


        currentTrial++;
        if(currentTrial>=s.length){
            cards.show(this, "end");
        }
        else{
            add(new sylBetween(answerTF,name), "b"+currentTrial);
            this.revalidate();
            cards.show(this, "b"+currentTrial);
            try {
                Thread.sleep(3000);
            } catch (InterruptedException e1) {
                System.err.println(e1);
            }
            cards.show(this,"Card"+currentTrial);
        }

    }

谢谢!

4

1 回答 1

2

您正在让您的事件调度程序线程等到 3 秒。这将停止响应,并且您的操作事件直到此时才会返回以进行重新绘制。检查 SwingUtilities invokeLater(),您可以创建一个后台线程并使其休眠 3 秒。一旦唤醒,使用 swing 实用程序方法,您可以编写 UI 更新代码,以便由 EDT 执行。

于 2012-02-08T19:52:27.087 回答