我的 JButtons 有问题

My JButtons are bugged

我在将二维 JButton 数组绘制到 JFrame 时遇到问题。除了最后一个,所有 JButtons 都正确绘制,最后一个要渲染的 JButton 适合 JFrame。我已经把所有JButtons的宽高都设置成了100x100,但是最后渲染的JButton没有100x100的宽高。我打印控制台的属性,它说按钮的高度和宽度是 494X496.

运行一切的主要class:

package gameData;

import javax.swing.*;

public class GameRun {

    JFrame frame;
    ActionHandle AH = new ActionHandle();
    Screen screen = new Screen();

    public GameRun() {
        beginSession();
        screen.renderScreen(frame, AH);
    }

    public void beginSession() {
        JFrame frame = new JFrame();
        frame.setSize(500, 525);;
        frame.setResizable(false);
        frame.setVisible(true);
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.setTitle("Game");
        this.frame = frame;
    }

    public static void main(String[] args) {
        new GameRun();
    }

}

JButtons的画法:

package gameData;

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

public class Screen {
    public void renderScreen(JFrame frame, ActionListener AL){
        JButton[][] button = new JButton[5][5];
        for(int i =0; i<button.length;i++){
            for(int j = 0; j<button[i].length; j++){
                button[i][j] = new JButton(i+" "+j);
                button[i][j].setBounds(i*100, j*100, 100, 100);
                button[i][j].addActionListener(AL);
                frame.add(button[i][j]);
            }
        }
    }
}
  1. JFrame 默认使用 BorderLayout,因此您将所有按钮添加到框架上的相同位置,可能与它们重叠。相反,您应该考虑使用 GridBagLayout。有关详细信息,请参阅 How to Use GridBagLayout
  2. 如果您想影响按钮的布局方式,您应该覆盖按钮 getPreferredSize 方法。
  3. 你真的应该在设置框架大小之前调用 setResizable
  4. 你应该使用 pack 而不是 setSize,框架有 window 装饰,这些装饰是装在 window 里面的,而不是添加进去,这会影响数量在您拥有的内容的可见 space 中,pack 将为您完成所有这些计算
  5. 你应该是 creating/modifying 你的 UI 从事件调度线程的上下文中,请参阅 Initial Threads 了解更多详细信息

例如...

import java.awt.EventQueue;
import java.awt.GridBagConstraints;
import java.awt.GridBagLayout;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.UIManager;
import javax.swing.UnsupportedLookAndFeelException;

public class Test {

    public static void main(String[] args) {
        new Test();
    }

    public Test() {
        EventQueue.invokeLater(new Runnable() {
            @Override
            public void run() {
                try {
                    UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
                } catch (ClassNotFoundException | InstantiationException | IllegalAccessException | UnsupportedLookAndFeelException ex) {
                    ex.printStackTrace();
                }

                JFrame frame = new JFrame("Testing");
                frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
                frame.add(new TestPane());
                frame.pack();
                frame.setLocationRelativeTo(null);
                frame.setVisible(true);
            }
        });
    }

    public class TestPane extends JPanel {

        public TestPane() {
            setLayout(new GridBagLayout());
            GridBagConstraints gbc = new GridBagConstraints();
            gbc.gridx = 0;
            gbc.gridy = 0;
            JButton[][] button = new JButton[5][5];
            for (int i = 0; i < button.length; i++) {
                gbc.gridx = 0;
                for (int j = 0; j < button[i].length; j++) {
                    button[i][j] = new JButton(i + " " + j) {
                        @Override
                        public Dimension getPreferredSize() {
                            return new Dimension(100, 100);
                        }
                    };
                    add(button[i][j], gbc);
                    gbc.gridx++;
                }
                gbc.gridy++;
            }
        }

    }

}

getPreferredSize 时要小心,字体通常不会在所有平台上呈现相同,这会影响您的程序在不同平台上的外观。在你的情况下,更改按钮的 margins 可能更安全