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.
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:
should be:
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
to
For example: