CardLayout
CardLayout is a special
layout manager for creating the effect of a “stack” of components. Instead
of arranging all of the container’s components, it displays only one at a
time. You might use this kind of layout to implement a custom-tabbed panel
of some kind. In fact, there’s probably little reason to use this layout
given the Swing JTabbedPane component
described in Chapter 17. We include it here
mainly for completeness.
To add a component to a CardLayout, use a two-argument version of the
container’s add() method; the extra
argument is an arbitrary string that serves as the card’s name:
add("netconfigscreen",myComponent);
To bring a particular card to the top of the stack, call the
CardLayout’s show() method with two arguments: the parent
Container and the name of the card you
want to show. There are also methods—first(), last(), next(), and previous()—for working with the stack of cards.
These are all CardLayout instance
methods. To invoke them, you need a reference to the CardLayout object itself, not to the container
it manages. Each method takes a single argument: the parent Container. Here’s an example:
//file: Card.javaimportjava.awt.*;importjava.awt.event.*;importjavax.swing.*;publicclassCardextendsJPanel{CardLayoutcards=newCardLayout();publicCard(){setLayout(cards);ActionListenerlistener=newActionListener(){publicvoidactionPerformed(ActionEvente){cards.next(Card.this);}};JButtonbutton;button=newJButton("one");button ...