Attempting to do CardLayout and no buttons are shown when running GUI

62 Views Asked by At

I'm trying to do a Card Layout. Right now I can't even switch between two screens. I want the first screen to have three top buttons. When clicking on add questions, I want the second screen to show up, which I'll code as soon as I get this problem out of the way. No buttons at all are showing up right now.

public class BookQuizGUI extends JFrame implements ActionListener
{
    private JFrame f;
    private JPanel card;
    private JPanel home;
    private JPanel contentPane;
    private JPanel pnlButtons;
    private JButton addQs;
    private JButton takeQuiz;
    private JButton quit;
    private CardLayout cardLayout;
    private JPanel addQ;
    private JPanel pnlButtons2;
    private JButton add;
    private JButton writeAll;
    private JButton done;
    private JButton quit2;

    /**
     * 
     */
    public BookQuizGUI()
    {
        //The main screen for when the program starts
        f = new JFrame();
        f.setTitle("Book Quiz");
        f.setSize(800, 400);
        f.setLocation(400, 250);
        f.setDefaultCloseOperation(EXIT_ON_CLOSE);
        contentPane = (JPanel) f.getContentPane();
        card = new JPanel();
        cardLayout = new CardLayout();
        card.setLayout(cardLayout);
        home = new JPanel();
        pnlButtons = new JPanel();
        pnlButtons.setLayout(new GridLayout(1, 3));
        addQs = new JButton("Add Questions");
        takeQuiz = new JButton("Take Quiz");
        quit = new JButton("Quit");
        pnlButtons.add(addQs);
        pnlButtons.add(takeQuiz);
        pnlButtons.add(quit);
        home.add(pnlButtons);
        card.add(home);
        f.add(card);
        cardLayout.show(card, "Home");

        addQ = new JPanel();
        addQ.setLayout(new GridLayout(1, 2));
        pnlButtons2 = new JPanel();
        add = new JButton("Add");
        writeAll = new JButton("Write All");
        done = new JButton("Done");
        quit2 = new JButton("Quit");
        pnlButtons2.add(add);
        pnlButtons2.add(writeAll);
        pnlButtons2.add(done);
        pnlButtons2.add(quit2);
        addQ.add(pnlButtons, BorderLayout.SOUTH);


        addQs.addActionListener(this);
        takeQuiz.addActionListener(this);
        quit.addActionListener(this);

        f.setVisible(true);
        }

    /**
     * @param args
     */
    public static void main(String[] args)
    {
        BookQuizGUI gui = new BookQuizGUI();

    }

    @Override
    public void actionPerformed(ActionEvent e)
    {
        if(e.getSource() == quit)
        {
            System.exit(0);
        }
        if(e.getSource() == addQs)
        {

        }
    }

}

Please, any help is appreciated.

1

There are 1 best solutions below

1
On BEST ANSWER

You're not adding components correctly to the CardLayout-using container. As per the tutorial, which I know that you have a link to, you need to add the components with a key String. So this:

    card.add(home);
    f.add(card);
    cardLayout.show(card, "Home");

should be:

    card.add(home, "Home");
    f.add(card);
    cardLayout.show(card, "Home");

Myself, I prefer to use String constants and not String literals so as to reduce errors.


You're also adding pnlButtons to more than one container -- don't do this as it's farking your gui up. You can add a component to one and only one container.

So change

addQ.add(pnlButtons, BorderLayout.SOUTH);

to

addQ.add(pnlButtons2, BorderLayout.SOUTH);

For example:

import java.awt.*;
import java.awt.event.*;
import javax.swing.*;

public class BookQuizGUI extends JFrame implements ActionListener {
   private static final String HOME = "home";
   private static final String ADD_Q = "add q";
   private JFrame f;
   private JPanel card;
   private JPanel home;
   private JPanel contentPane;
   private JPanel pnlButtons;
   private JButton addQs;
   private JButton takeQuiz;
   private JButton quit;
   private CardLayout cardLayout;
   private JPanel addQ;
   private JPanel pnlButtons2;
   private JButton add;
   private JButton writeAll;
   private JButton done;
   private JButton quit2;

   public BookQuizGUI() {
      f = new JFrame();
      f.setTitle("Book Quiz");
      // f.setSize(800, 400);
      f.setLocation(400, 250);
      f.setDefaultCloseOperation(EXIT_ON_CLOSE);
      contentPane = (JPanel) f.getContentPane();
      home = new JPanel();
      pnlButtons = new JPanel();
      pnlButtons.setLayout(new GridLayout(1, 3));
      addQs = new JButton("Add Questions");
      takeQuiz = new JButton("Take Quiz");
      quit = new JButton("Quit");
      pnlButtons.add(addQs);
      pnlButtons.add(takeQuiz);
      pnlButtons.add(quit);
      home.add(pnlButtons);

      addQ = new JPanel();
      addQ.setLayout(new GridLayout(1, 2));
      pnlButtons2 = new JPanel();
      add = new JButton("Add");
      writeAll = new JButton("Write All");
      done = new JButton("Done");
      quit2 = new JButton("Quit");
      pnlButtons2.add(add);
      pnlButtons2.add(writeAll);
      pnlButtons2.add(done);
      pnlButtons2.add(quit2);
      addQ.add(pnlButtons2, BorderLayout.SOUTH);

      addQs.addActionListener(this);
      takeQuiz.addActionListener(this);
      quit.addActionListener(this);


      card = new JPanel();
      cardLayout = new CardLayout();
      card.setLayout(cardLayout);
      card.add(home, HOME);
      card.add(addQ, ADD_Q);     
      cardLayout.show(card, HOME);
      f.add(card);
      f.pack();
      f.setVisible(true);
   }

   public static void main(String[] args) {
      new BookQuizGUI();
   }

   @Override
   public void actionPerformed(ActionEvent e) {
      if (e.getSource() == quit) {
         System.exit(0);
      }
      if (e.getSource() == addQs) {
         cardLayout.show(card, ADD_Q);
      }
   }

}