vote up 2 vote down star

Hi All,

I'm writing a game which uses a border layout with a JPanel using BorderLayout.CENTER. What I'd like to be able to do is sometimes hide this panel and replace it with another panel with different information. I added both to the container and set visibility of one of them to false.

Then later I try:

panel1.setVisible(false);
panel2.setVisible(true);

but this doesn't display the new panel. I just see gray. Any ideas?

TIA

flag

71% accept rate

1 Answer

vote up 5 vote down check

Use a nested JPanel with a CardLayout for that.

link|flag
Thank you! I'm a Swing noob. Does it show? – Dan Howard Oct 28 at 22:14

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.