I am trying to add a JPanel (well, several) to a JLayeredPane. However, when I do so, the paint component method of the JPanel seems to have no effect. An example is included below:

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

public class Example {

    public static void main(String[] args) {

        // This Works as expected
        JFrame usingPanel = new JFrame();
        JPanel p = new JPanel();
        p.add(new BluePanel());
        usingPanel.setContentPane(p);
        usingPanel.pack();
        usingPanel.setVisible(true);

        // This makes the frame but does not paint the BluePanel
        JFrame usingLayer = new JFrame();
        JLayeredPane l = new JLayeredPane();
        l.setPreferredSize(new Dimension(200,200));
        l.add(new BluePanel(), JLayeredPane.DEFAULT_LAYER);
        JPanel p2 = new JPanel();
        p2.add(l);
        usingLayer.setContentPane(p2);
        usingLayer.pack();
        usingLayer.setVisible(true);
    }


   static class BluePanel extends JPanel{

        public BluePanel(){
            setPreferredSize(new Dimension(200,200));
        }

        @Override
        public void paintComponent(Graphics g){
            super.paintComponent(g);
            g.setColor(Color.BLUE);
            g.fillRect(0, 0, 200, 200);
        }


    }


}

Why is this? and what are the possible solutions?

link|improve this question

80% accept rate
feedback

2 Answers

up vote 6 down vote accepted

JLayeredPane does not have a LayoutManager, so you need to set the location and size of your panels yourself. See the tutorial

link|improve this answer
right suggestion +1 – mKorbel Dec 7 '11 at 13:27
I was obviously tired when I read the tutorial looking for this. Makes perfect sense, I was just being thick :/ – James Dec 21 '11 at 21:16
feedback

1) you hardcoder size on the screen, and have to change from

g.fillRect(0, 0, 200, 200);

to

g.fillRect(0, 0, getWidth(), getHeight());

2) only minor change add new method

@Override
public Dimension getPreferredSize() {
    return new Dimension(200, 200);
} 

and then remove of code line setPreferredSize(new Dimension(200,200));

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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