Code:
import java.awt.Dimension;
import javax.swing.*;
public class Game extends JFrame {
private static final long serialVersionUID = -7919358146481096788L;
JPanel a = new JPanel();
public static void main(String[] args) {
new Game();
}
private Game() {
setTitle("Insert name of game here");
setLocationRelativeTo(null);
setLayout(null);
setDefaultCloseOperation(EXIT_ON_CLOSE);
a.setPreferredSize(new Dimension(600, 600));
add(a);
pack();
setVisible(true);
}
}
So I set the preferred size of the JPanel
to 600 by 600 and pack the frame, but the frame's size is still 0 by 0.
Why is this and how do I fix it?
pack()
queries the preferred size of the parent container over that of the child so you would have to use:Another note is to call
after
pack()
has been called to calculate center coordinates :)OK, just spotted the null layout there, why not use the default BorderLayout of JFrame?
Your problem is
setLayout(null)
, becase the docs say forpack()
:thus with no layout it does not execute correctly.
This seems to work fine for me:
As you said,
pack()
will try and arrange the window so that every component is resized to its preferredSize.The problem is that it seems that the layout manager is the one trying to arrange the components and their respective preferredSizes. However, as you set the layout manager as being null, there is no one in charge of that.
Try commenting the
setLayout(null)
line, and you're gonna see the result. Of course, for a complete window, you're going to have to choose and set a meaningfulLayoutManager
.This works fine to me: