有 Java 编程相关的问题?

你可以在下面搜索框中键入要查询的问题!

java CardLayout按钮在单击6次后更改

我正在尝试创建一个测验。测验从阅读文件开始。该文件有6个问题。每个问题在卡片布局中都有自己的卡片。每一张卡片都有一个按钮,可连接到下一张卡片布局。问题1-5应该有一个“下一步”按钮,链接到下一张卡片。问题6应有一个显示“获取结果”的按钮,该按钮将链接到一张显示可能结果卡之一的卡。(这些仍在进行中,目前我只是尝试创建按钮,并使用.previous()方法对其进行测试)。到目前为止,每张卡片都有一个“下一步”按钮,而且似乎没有达到添加“获取结果”按钮的语句。看一看

import java.awt.BorderLayout;
import java.awt.CardLayout;
import java.awt.Color;
import java.awt.GridLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ItemListener;
import java.io.FileNotFoundException;
import java.util.ArrayList;
import java.util.List;
import javax.swing.AbstractAction;
import javax.swing.BorderFactory;
import javax.swing.ButtonGroup;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.JRadioButton;

public class UserInterface extends JPanel {
    public static final Object QUESTION = "question";
    // fill label with blank text to expand it
    private JLabel resultLabel = new JLabel(String.format("%150s", " "));

    // CardLayout to allow swapping of question panels
    private CardLayout cardLayout = new CardLayout();
    private JPanel centerPanel = new JPanel(cardLayout);
    private List<String> answers = new ArrayList<>();
    private int currentCard = 0; 
    private QuestionsContainer containers = new QuestionsContainer();

    public UserInterface(QuestionsContainer container) throws FileNotFoundException {
        centerPanel.setBorder(BorderFactory.createLineBorder(Color.BLUE));
        for (Questions question : container.getQuestions()) {
            centerPanel.add(createQPanel(question), null);
            currentCard++;

            JPanel bottomPanel = new JPanel(new BorderLayout());

            if ((currentCard == containers.questionsLength() - 1){
                bottomPanel.add(new JButton(new AbstractAction("Next") {
                   @Override
                   public void actionPerformed(ActionEvent e) {
                    cardLayout.next(centerPanel);

                }
            }),
                BorderLayout.LINE_START);
                add(bottomPanel, BorderLayout.LINE_START);
                bottomPanel.add(resultLabel);

                setLayout(new BorderLayout());
                add(bottomPanel, BorderLayout.PAGE_END);
                add(centerPanel);
        }

                JPanel bottomPanel1 = new JPanel();
                bottomPanel1.add(new JButton(new AbstractAction("Get Results") {
                    @Override
                    public void actionPerformed(ActionEvent e) {
                        System.out.println("hello");
                        cardLayout.previous(centerPanel);
// both of these are just to see if this statement is reached
                        bottomPanel.validate();
                        bottomPanel.repaint();
                }
            }),
                BorderLayout.LINE_START);
                add(bottomPanel1, BorderLayout.LINE_START);
                bottomPanel1.add(resultLabel);

                setLayout(new BorderLayout());
                add(bottomPanel1, BorderLayout.PAGE_END);
                add(centerPanel);
        }    
    }

    private JPanel createQPanel(Questions question) {

        JPanel radioPanel = new JPanel(new GridLayout(0, 1));
        radioPanel.setBorder(BorderFactory.createEmptyBorder(3, 3, 3, 3));
        radioPanel.add(new JLabel(question.getQuestion()), BorderLayout.PAGE_START);
        ButtonGroup buttonGroup = new ButtonGroup();
        ItemListener myItemListener = new MyItemListener(this);
        for (String answer : question.getAnswer()) {
            JRadioButton answerButton = new JRadioButton(answer);

            answerButton.putClientProperty(QUESTION, question);
            answerButton.addItemListener(myItemListener);
            buttonGroup.add(answerButton);
            radioPanel.add(answerButton);
        }

        JPanel qPanel = new JPanel(new BorderLayout());
        qPanel.add(radioPanel);
        return qPanel;
    }

    public void displayResult(String selectedText) {
        resultLabel.setText(selectedText);
    }
    public void displayFinalResults(){

    }
    public static void createAndShowGui() throws FileNotFoundException {

        UserInterface mainPanel = new UserInterface(new QuestionsContainer());

        JFrame frame = new JFrame("User Interface");
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.getContentPane().add(mainPanel);
        frame.pack();
        frame.setLocationRelativeTo(null);
        frame.setVisible(true);
    }

public class QuestionsContainer {

    private List<Questions> questions = new ArrayList<>();
    private int questionCount = 0;  

    QuestionsContainer() throws FileNotFoundException {

        File file = new File("src/house1.txt"); 
        try (Scanner reader = new Scanner(file)) {
            String question = "";
            List<String> answers = new ArrayList<>();

            while (reader.hasNextLine()){


                String line = reader.nextLine();
                if (line.startsWith("QUESTION: ")) {
                    question = line.substring(10);
                } else if (line.startsWith("ANSWER: ")){
                    String answer = line.substring(8);
                    answers.add(answer);
                } else if (line.isEmpty()) {
                    questions.add(new Questions(question, answers));
                    question = "";
                    answers = new ArrayList<>();
                    questionCount++;
                }
            }
        }
    }

    public List<Questions> getQuestions() {
        return questions;
    }
    public int questionsLength(){
        return questions.size();
    }

我已经尝试使bottomPanel成为它自己的方法,该方法返回bottomPanel。这并没有达到预期的结果,因为它是在构造函数中调用的,我不认为currentCard变量每次都在加。 现在,这段代码可以很好地阅读所有问题和所有答案。但它会在每张卡上创建一个下一步按钮,而不仅仅是在前5张卡上。如果在一个奇怪的地方有一个变量或者一个可疑的打印调用,那么它很可能是我忘记删除/注释掉的前一个测试的遗留代码


共 (1) 个答案

  1. # 1 楼答案

    你似乎是从程序的角度思考问题,而不是从事件驱动的角度思考问题。currentCard的状态将在每次循环期间更新,它的状态不会在迭代之间“存储”

    这意味着,作为BorderLayout的副作用,只会显示添加到容器中的最后一个组件

    相反,你需要改变你的想法,这样当ActionListener被触发时,你就可以更新状态并决定应该做什么,例如

    public UserInterface(QuestionsContainer container) throws FileNotFoundException {
        setLayout(new BorderLayout());
        centerPanel.setBorder(BorderFactory.createLineBorder(Color.BLUE));
        for (Questions question : container.getQuestions()) {
            centerPanel.add(createQPanel(question), null);
        }
        add(centerPanel);
    
        JPanel navigationPane = new JPanel(new GridBagLayout());
        navigationPane.setBorder(new EmptyBorder(8, 8, 8, 8));
        JButton navButton = new JButton("Next");
        navButton.addActionListener(new ActionListener() {
            @Override
            public void actionPerformed(ActionEvent evt) {
                if (evt.getActionCommand().equals("Next")) {
                    currentCard++;
                    if (currentCard == container.questionsLength()) {
                        ((JButton) evt.getSource()).setText("Get results");
                    }
                    cardLayout.next(centerPanel);
                } else {
                    System.out.println("Print the results");
                }
            }
        });
        GridBagConstraints gbc = new GridBagConstraints();
        gbc.anchor = GridBagConstraints.EAST;
        gbc.weightx = 1;
        navigationPane.add(navButton, gbc);
        add(navigationPane, BorderLayout.SOUTH);
    }