事情很简单,但是当然,您应该自己搜索更多。
顺便说一句,您在管理按钮的布局和大小方面存在问题。
请忘记使用任何布局创建器,因为它们会生成令人困惑的代码,而且很难理解到底发生了什么。
通常对于初学者我会讲一个特定的布局,即 BoxLayout [编辑:当然有很多更简单的方法可以达到目标,这个答案有教学目的并且希望足够大以便理解,而不仅仅是成为一个“这里,做这个复制粘贴]
首先我们需要知道 Box 布局是如何工作的。它有两种轴(即添加组件的方式),从上到下 (PAGE_AXIS) 和从左到右 (LINE_AXIS)。使用这两个轴并嵌套各种布局,您可以随心所欲。
首先要知道如何嵌套更多布局。
为了嵌套布局,我们将使用 JPanel,每个都有一个不同的轴,这些轴将被放入另一个轴中。
开始分析你的案例。您在面板中心的三个按钮上有一个标签。我们可以从内部面板开始,即带有组件的面板;我们需要一个 PAGE_AXIS(从上到下),其中包括:
// +---------------------+
// | white space |
// | |
// + - - - - - - - - - - +
// |JLABEL JLABEL JLABEL|
// + - - - - - - - - - - +
// | white space |
// |_____________________|
// | button |
// |---------------------|
// |_____________________|
// | button |
// |---------------------|
// |_____________________|
// | button |
// |---------------------|
// | white space |
// +---------------------+
如您所见,面板适合匹配组件的宽度,诀窍是 BoxLayout 更愿意为组件提供最大尺寸。在这种情况下没有边距,所以我们需要一个外部不同的JPanel,带有LINE_AXIS,以便放置左右边距,结果将是这样的:
// +---+---------------------+---+
// | | white space | |
// | | | |
// | + - - - - - - - - - - + |
// | W |JLABEL JLABEL JLABEL| W |
// | H + - - - - - - - - - - + H |
// | I | white space | I |
// | T _____________________ T |
// | E | button | E |
// | --------------------- |
// | S _____________________ S |
// | P | button | P |
// | A --------------------- A |
// | C _____________________ C |
// | E | button | E |
// | --------------------- |
// | | white space | |
// +-----------------------------+
所以,我们需要知道的第一件事是热设置每个面板的布局。
// Initializing
JPanel outside = new JPanel();
JPanel inside = new JPanel();
// setting a layout with horizontal alignment
outside.setLayout(new BoxLayout(outside, BoxLayout.LINE_AXIS));
// setting a layout with vertical alignment
inside.setLayout(new BoxLayout(inside, BoxLayout.PAGE_AXIS));
完成此操作后,我们必须填充面板。从外面开始。局外人需要(看着我的形象)首先是一个水平空间,然后是内部面板,然后是另一个水平空间。我继续添加它们。
// create an horizontal space of 20px
outside.add(Box.createHorizontalStrut(20));
outside.add(inside);
outside.add(Box.createHorizontalStrut(20));
现在我们移动到里面,我们需要一个大的空白,标签,另一个白色,一个按钮,一个小白,按钮,小白,第三个按钮和一个大白。我继续用这个填充内部面板。
// create a vertical space of 20px
inside.add(Box.createVerticalStrut(20));
JLabel title = new JLabel("THE TITLE");
inside.add(title);
inside.add(Box.createVerticalStrut(20);
JButton btt1 = new JButton("BUTTON ONE");
// create a new dimension object
Dimension d = new Dimension(200,40);
// set the four kind of size, the button CANNOT be different than the dimension I choose
btt1.setSize(d);
btt1.setMinimumSize(d);
btt1.setMaximumSize(d);
btt1.setPreferredSize(d);
JButton btt2 = new JButton("BUTTON TWO");
btt2.setSize(d);
btt2.setMinimumSize(d);
btt2.setMaximumSize(d);
btt2.setPreferredSize(d);
JButton btt3 = new JButton("BUTTON THREE");
btt3.setSize(d);
btt3.setMinimumSize(d);
btt3.setMaximumSize(d);
btt3.setPreferredSize(d);
// Now that the button are ready we put them in the panel.
inside.add(btt1);
inside.add(Box.createVerticalStrut(5));
inside.add(btt2);
inside.add(box.createVerticalStrut(5));
inside.add(btt3);
// Last white space, the bottom margin:
inside.add(Box.createVerticalStrut(20));
现在我已经完美地建立了我的结构。只要让它可见,一切就完成了。当然你需要把它放在 JFrame 或 JDialog 中,当然第一个面板可以是 JFrame 或 JDialog,因为可以为任何组件设置 BoxLayout。
通过这个基础教程,我希望您了解编程这种结构的基础知识。但是您需要阅读此内容才能继续并使事情变得更复杂:
http: //docs.oracle.com/javase/tutorial/uiswing/layout/index.html
http://docs.oracle.com/javase /tutorial/uiswing/layout/box.html
祝你今天过得愉快。