没有布局管理器的响应式 JFrame

Responsive JFrame without Layout Manager

我正在尝试在 JFrame 中设置两个按钮,我调用它们的 setBounds 方法来设置它们的位置和大小,并且我将 null 传递给setLayout1 because I want to use组件的setBounds`方法。

现在我想用我的代码做一些事情,每当我调整框架按钮的大小时,装饰就会以合适的形式改变,如下图所示:

我知道可以使用从 JPanel class 创建对象并向其添加按钮,最后将创建的面板对象添加到框架,但我不允许这样做现在因为一些原因(由教授指定)。

有什么办法或者有什么建议吗?

我的代码是这样的:

public class Responsive
{
    public static void main(String[] args)
    {
        JFrame jFrame = new JFrame("Responsive JFrame");
        jFrame.setLayout(null);
        jFrame.setBounds(0,0,400,300);

        JButton jButton1 = new JButton("button 1");
        JButton jButton2 = new JButton("button 2");

        jButton1.setBounds(50,50,100,100);
        jButton2.setBounds(150,50,100,100);

        jFrame.add(jButton1);
        jFrame.add(jButton2);

        jFrame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        jFrame.setVisible(true);
    }
}

您可以尝试使用:

jFrame.addComponentListener(new ComponentListener() {

    // this method invokes each time you resize the frame
    public void componentResized(ComponentEvent e) {            
        // your calculations on buttons          
    }
});

A FlowLayout 没有水平间距,一些垂直间距和大边框可以轻松实现。 null 布局管理器 永远不会 'responsive' 强大的 GUI 的答案。

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

public class ResponsiveGUI {

    private JComponent ui = null;

    ResponsiveGUI() {
        initUI();
    }

    public void initUI() {
        if (ui!=null) return;

        ui = new JPanel(new FlowLayout(FlowLayout.CENTER, 0, 8));
        ui.setBorder(new EmptyBorder(10,40,10,40));

        for (int i=1; i<3; i++) {
            ui.add(getBigButton(i));
        }
    }

    public JComponent getUI() {
        return ui;
    }

    private final JButton getBigButton(int number) {
        JButton b = new JButton("Button " + number);
        int pad = 20;
        b.setMargin(new Insets(pad, pad, pad, pad));

        return b;
    }

    public static void main(String[] args) {
        Runnable r = new Runnable() {
            @Override
            public void run() {
                try {
                    UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
                } catch (Exception useDefault) {
                }
                ResponsiveGUI o = new ResponsiveGUI();

                JFrame f = new JFrame("Responsive GUI");
                f.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
                f.setLocationByPlatform(true);

                f.setContentPane(o.getUI());
                f.pack();

                f.setVisible(true);
            }
        };
        SwingUtilities.invokeLater(r);
    }
}