JButtons显示在父Panel(?)

时间:2017-03-02 11:06:07

标签: java eclipse user-interface

新手在这里。

我试图创建一个框架,其中有一个黑色面板可以在其中创建一些动画,还有一个用于放置控制按钮的ui面板。但是当我创建JButtons并将它们添加到ui面板时,它们似乎在ui面板之外。

我认为这是因为布局,但我无法确定哪种布局最适合我的情况。尝试了GridLayout,GridBoxLayout,BoxLayout ......其中没有一个看起来没问题,而且我很确定我错过了什么。

Oracle文档非常丰富,但我不能说它帮助了我很多,无法理解布局。

这是我的代码: 我编辑了我的代码,感谢Berger的回答,但仍然遇到了麻烦,所以我更新了代码和屏幕截图。

没关系,我忘记修复某些部分,Berger的回答是完美的。谢谢!

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

public class gui {
public static void InitializeGUI(){
//DEFINE MAIN FRAME
JFrame window = new JFrame("Simulator");
window.setSize(1000, 1000);
window.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
window.setLocationRelativeTo(null);
//DEFINE UNIVERSE PANEL
JPanel universe = new JPanel(){
        /**
     * 
     */
private static final long serialVersionUID = 1L;

@Override
    public Dimension getPreferredSize() {
    return new Dimension(window.getContentPane().getSize().width, 3 *     window.getSize().height / 4);
}
};
universe.setBackground(Color.BLACK);
//DEFINE UI PANEL
JPanel ui = new JPanel() {
    /**
     * 
     */
    private static final long serialVersionUID = 1L;

    @Override
    public Dimension getPreferredSize() {
        return new Dimension(window.getContentPane().getSize().width, window.getSize().height / 4);
    }
};
//DEFINE BUTTONS
JButton femalespawnbutton = new JButton("Spawn Female");
femalespawnbutton.setSize(150, 100);
JButton malespawnbutton = new JButton("Spawn Male");
malespawnbutton.setSize(150, 100);

//FILL
ui.add(femalespawnbutton, BorderLayout.CENTER);
ui.add(malespawnbutton, BorderLayout.CENTER);
window.add(universe, BorderLayout.NORTH);
window.add(ui, BorderLayout.SOUTH);
window.setVisible(true);
 }
}

Here's the screenshot

2 个答案:

答案 0 :(得分:1)

第一件事是您将两个面板添加到window,其内容窗格中包含BorderLayout

所以

window.add(universe);
window.add(ui;

相同
window.add(universe, BorderLayout.CENTER);
window.add(ui, BorderLayout.CENTER);

并且两个组件都被添加到同一个地方(按钮可能是隐藏的)

为避免这种情况,您可以给出约束,指明BorderLayout中要添加组件的位置,.eg:

window.add(universe, BorderLayout.CENTER);
window.add(ui, BorderLayout.SOUTH);

第二件事是您正在使用setSize(),除非您没有布局管理员,否则不会考虑这一点。

您可以使用setPreferredSize来代替height某个布局管理员,例如BorderLayoutSOUTH组件的NORTH。 :

ui.setPreferredSize(new Dimension(1000, 250));

现在,如果您希望它适应窗口的大小,请改写方法:

JPanel ui = new JPanel() {

            @Override
            public Dimension getPreferredSize() {

                return new Dimension(window.getContentPane().getSize().width, window.getContentPane().getSize().height / 4);

            }
        };

全部放在一起(因为南方组件的首选高度很受尊重,在您的情况下不需要给中心组件一个,它将占用剩余的空间):

   //DEFINE MAIN FRAME
    final JFrame window = new JFrame("Simulator");
    window.setSize(1000, 1000);
    window.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    window.setLocationRelativeTo(null);

    //DEFINE UNIVERSE PANEL
    JPanel universe = new JPanel();
    universe.setBackground(Color.BLACK);

    //DEFINE UI PANEL
    JPanel ui = new JPanel() {

        @Override
        public Dimension getPreferredSize() {

            return new Dimension(window.getContentPane().getSize().width, window.getContentPane().getSize().height / 4);

        }
    };

    //DEFINE BUTTONS
    JButton femalespawnbutton = new JButton("Spawn Female");
    femalespawnbutton.setSize(250, 100);
    JButton malespawnbutton = new JButton("Spawn Male");
    malespawnbutton.setSize(250, 100);

    //FILL
    ui.add(femalespawnbutton);
    ui.add(malespawnbutton);
    window.add(universe, BorderLayout.CENTER);
    window.add(ui, BorderLayout.SOUTH);
    window.setVisible(true);

最后重要提示:

尽管这种方法在某些情况下有效,但是不应该自己设置组件的大小(除了像windows这样的顶级容器):

请参阅:Should I avoid the use of set(Preferred|Maximum|Minimum)Size methods in Java Swing?

答案 1 :(得分:0)

对不起 - 目前我没有太多时间 - 但是现在:它是LayoutManager的一个问题。您应该在初始化JPanel时设置一个。例如新的Jpanel(新的GridLayout(1,2)); - >会工作,但不是很好;)有关布局的更多信息:

https://docs.oracle.com/javase/tutorial/uiswing/layout/visual.html