我正在尝试用Java编写游戏代码,目前正在制作标题屏幕。

我想在中间放置三个位于彼此下方的按钮。
这些按钮是“播放”,“选项”和“退出”。

我使用GridLayout对按钮进行了排序,现在我希望在屏幕顶部和“播放”按钮之间留一点空隙。你能告诉我怎么做吗?

我当前的代码如下所示:

public class GamePanel extends JPanel {

    private JPanel optionsPanel;

    public GamePanel() {
        super(new FlowLayout());
        FlowLayout layout = (FlowLayout) getLayout();
        layout.setAlignment(FlowLayout.CENTER);

        GridLayout layout2 = new GridLayout(3,1);
        optionsPanel = new JPanel(layout2);
        add(optionsPanel);

        optionsPanel.add(new CustomButton("Play"));
        optionsPanel.add(new CustomButton("Options"));
        optionsPanel.add(new CustomButton("Quit"));
    }
}

最佳答案

尝试这样的事情:

optionsPanel.setBorder(BorderFactory.createEmptyBorder(10, 0, 0, 0));


另请参阅:https://docs.oracle.com/javase/8/docs/api/javax/swing/BorderFactory.html#createEmptyBorder-int-int-int-int-

09-27 20:12