3

我有一个带有 BorderLayout 的 JFrame 类,它包含另一个扩展 JPanel 的类(ScorePanel)。这是 JFrame 类的相关代码,该方法不是由设置 ScorePanel 的构造函数调用的。gPanel 是主要的游戏面板,但不要担心。:

public void initialize() { //called by controller at the end
    if (Controller.DEBUG) System.out.println("View initialized"); 
    JPanel scores = new JPanel();
    scores.setSize(1000,200);
    scores.setBackground(Color.BLACK);
    ScorePanel score1 = new ScorePanel("Volume", 1);
    ScorePanel score2 = new ScorePanel("Pitch", 2);
    scores.add(score1); scores.add(score2);
    scores.setVisible(true);
    scores.validate();
    this.add(scores, BorderLayout.SOUTH);
    this.add(gpanel, BorderLayout.CENTER); //main game panel
    this.validate();
    this.setVisible(true);
    this.repaint();
}

这是ScorePanel的相关代码:

private int score; //this current score
private String name; //this name
private int player; //this player

public ScorePanel(String n, int p){ //a JPanel that shows the player's name and score
    super();
    name = n;
    score = 0;
    player = p;
    setBackground(Color.WHITE);
    setSize(450,150);
    setVisible(true);
}

我之前已经想通了,但我不记得该怎么做了。当我运行它时会发生什么,我看到一些白色方块应该是大的 ScorePanels。

这是一个屏幕截图。我希望我的问题和代码很清楚。

未完成的乒乓球比赛

4

1 回答 1

5

JPanel默认情况下使用FlowLayout尊重其子组件的首选大小。当前的首选大小可能是0 x 0. 覆盖getPreferredSize以设置它。

ScorePanel score1 = new ScorePanel("Volume", 1) {
    @Override
    public Dimension getPreferredSize() {
        return new Dimension(150, 100);
    };
};

不要setSize在组件上使用。而是像上面那样设置首选大小并确保调用JFrame#pack

于 2013-05-17T00:00:35.957 回答