我认为,您可以使用Component
将JButton
(例如JPanel
)置于BorderLayout
中心:
panel.setLayout(new BorderLayout());
panel.add(button, BorderLayout.CENTER);
但JButton
占用JPanel
中的所有空格。
例如是否可以使用其他LayoutManager
,或者是否有一种更简单的方法可以使JButton
居中?
我认为,button.setAlignmentX(JButton.CENTER_ALIGNMENT)
不起作用。
答案 0 :(得分:0)
我猜大多数任务只是个人选择/老板的订单问题,如果您使用的是布局管理器而不是其他布局管理器。有一些布局管理器可以完成所有要求,例如GridBadLayout,但我个人认为在大多数情况下它们不是最好的选择,因为它们最终可能会使事情过于复杂。对于此特定任务,我将使用BoxLayout https://docs.oracle.com/javase/tutorial/uiswing/layout/box.html
并会编写类似的代码:
import java.awt.*;
import javax.swing.*;
public class CenteredButton extends JFrame {
public CenteredButton() {
Container pane = getContentPane();
pane.setLayout(new BoxLayout(pane, BoxLayout.PAGE_AXIS));
JPanel panel = new JPanel();
JButton button = new JButton("Button1");
button.setPreferredSize(new Dimension(100, 50));
panel.add(button);
pane.add(panel);
pack();
setVisible(true);
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
}
public static void main(String[] args) {
new CenteredButton();
}
}
您可能会注意到,调整按钮尺寸的大小不会改变它粘在画面中间的事实。
PS:开发人员的意见主要是对http://www.miglayout.com/和https://tips4java.wordpress.com/2008/11/02/relative-layout/充满热情。在我看来,这两个都比GridBagLayout
更容易管理