当前位置: 首页 > 知识库问答 >
问题:

JButton没有放在正确的位置或正在消失

萧英睿
2023-03-14

我是一个初学者程序员,我试图做一个简单的计算器,但由于某种原因,按钮似乎不能正常工作,它们要么消失,填满整个面板,要么设置在错误的位置。奇怪的是,当我悬停并在按钮上点击鼠标时,按钮就会出现。我可能会错过一些非常明显的东西,但请帮助(此外,代码不是很干净)。谢谢你!

主要的

public abstract class Main {
    public static JFrame frame = new JFrame("Calculator");
    public static JPanel panel = new JPanel();
    
    public static CaculatorButton buttons = new CalculatorButton(); 
    
    public static void main(String[] args) {
        Window.window(frame, panel);
        buttons.b0(panel); 
    }
}

计算器按钮

public class CaculatorButton {
    
    private static JButton b0, b1, b2, b3, b4, b5, b6, b7, b8, b9; 
    private static JTextArea text;
    private static JButton plus;
    private static JButton minus;
    private static JButton equals; 
    private static String temp;
    
    public void b0(JPanel panel) {
        b0 = new JButton("0");      
        b0.setFocusable(false);
        b0.setBackground(Color.GRAY);
        b0.setPreferredSize(new Dimension(80, 80));
        panel.add(b0);      
        b0.setBounds(10, 395, 80, 80);  
        
        b1(panel); b2(panel); b3(panel); b4(panel); b5(panel); b6(panel); b7(panel); b8(panel); b9(panel); textArea(panel); plus(panel); minus(panel); 
        equals(panel); input();
    }
    
    private static void b1(JPanel panel) {
        b1 = new JButton("1");
        b1.setFocusable(false);
        b1.setBackground(Color.GRAY);
        b1.setPreferredSize(new Dimension(80, 80));
        panel.add(b1);
        b1.setBounds(10, 140, 80, 80);
    }

    private static void b2(JPanel panel) {
        b2 = new JButton("2");
        b2.setFocusable(false);
        b2.setBackground(Color.GRAY);
        b2.setPreferredSize(new Dimension(80, 80));
        panel.add(b2);
        b2.setBounds(95, 140, 80, 80);
    }
    
    private static void b3(JPanel panel) {

        b3 = new JButton("3");
        b3.setFocusable(false);
        b3.setBackground(Color.GRAY);
        b3.setPreferredSize(new Dimension(80, 80));
        panel.add(b3);
        b3.setBounds(180, 140, 80, 80);
    }
    
    private static void b4(JPanel panel) {
        b4 = new JButton("4");
        b4.setFocusable(false);
        b4.setBackground(Color.GRAY);
        b4.setPreferredSize(new Dimension(80, 80));
        panel.add(b4);
        b4.setBounds(10, 225, 80, 80);
    }

    private static void b5(JPanel panel) {
        b5 = new JButton("5");
        b5.setFocusable(false);
        b5.setBackground(Color.GRAY);
        b5.setPreferredSize(new Dimension(80, 80));
        panel.add(b5);
        b5.setBounds(95, 225, 80, 80);
    }

    private static void b6(JPanel panel) {
        b6 = new JButton("6");
        b6.setFocusable(false);
        b6.setBackground(Color.GRAY);
        b6.setPreferredSize(new Dimension(80, 80));
        panel.add(b6);
        b6.setBounds(180, 225, 80, 80);
    }

    private static void b7(JPanel panel) {
        b7 = new JButton("7");
        b7.setFocusable(false);
        b7.setBackground(Color.GRAY);
        b7.setPreferredSize(new Dimension(80, 80));
        panel.add(b7);
        b7.setBounds(10, 310, 80, 80);
    }
    
    private static void b8(JPanel panel) {
        b8 = new JButton("8");
        b8.setFocusable(false);
        b8.setBackground(Color.GRAY);
        b8.setPreferredSize(new Dimension(80, 80));
        panel.add(b8);
        b8.setBounds(95, 310, 80, 80);
    }
    
    private static void b9(JPanel panel) {
        b9 = new JButton("9");
        b9.setFocusable(false);
        b9.setBackground(Color.GRAY);
        b9.setPreferredSize(new Dimension(80, 80));
        panel.add(b9);
        b9.setBounds(180, 310, 80, 80);
    }
    
    private static void plus(JPanel panel) {
        plus = new JButton("+");
        plus.setFocusable(false);
        plus.setBackground(new Color(0, 200, 150));
        plus.setPreferredSize(new Dimension(80, 80));
        panel.add(plus); 
        plus.setBounds(95, 395, 80, 80);
    }
    
    private static void minus(JPanel panel) {
        minus = new JButton("-");
        minus.setFocusable(false);
        minus.setBackground(new Color(0, 200, 150));
        b0.setPreferredSize(new Dimension(80, 80));
        panel.add(minus); 
        minus.setBounds(180, 395, 80, 80);
    }
    
    private static void equals(JPanel panel) {
        equals = new JButton("="); 
        equals.setFocusable(false);
        equals.setBackground(new Color(200, 125, 0));
        b0.setPreferredSize(new Dimension(80, 335));
        panel.add(equals);
        equals.setBounds(265, 140, 80, 335);
    }
    
    private static void input() {

        JButton[] buttons = {b0, b1, b2, b3, b4, b5, b6, b7, b8, b9};
        
        ActionListener al = new ActionListener() {
            @Override
            public void actionPerformed(ActionEvent e) {
                
                for (int i = 0; i <= 9; i++) {
                    if(e.getSource()== buttons[i]) {
                        String str = Integer.toString(i); 
                        if (temp == null) {
                            temp = str;
                        } else {
                            temp = temp + str;
                            text.setText(temp);
                        }
                    }
                }
            }   
        };
        
        b0.addActionListener(al);
        b1.addActionListener(al);
        b2.addActionListener(al);
        b3.addActionListener(al);
        b4.addActionListener(al);
        b5.addActionListener(al);
        b6.addActionListener(al);
        b7.addActionListener(al);
        b8.addActionListener(al);
        b9.addActionListener(al);
    }

    private static void textArea(JPanel panel) {
        
        text = new JTextArea("");
        panel.add(text);    
        text.setVisible(true);
        text.setFocusable(true);
        text.setForeground(new Color(51,255,255));
        text.setFont(text.getFont().deriveFont(25f));
        text.setBackground(Color.DARK_GRAY);
        text.setBounds(10, 10, 335, 120);
    }
}

public class Window extends JFrame {    
    public static void window(JFrame frame, JPanel panel) {     
        frame.setSize(370, 522);
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.setVisible(true); 
        frame.setResizable(false);
        frame.setLocationRelativeTo(null);
        frame.setLayout(new BorderLayout());
        
        frame.add(panel, BorderLayout.CENTER); 
        panel.setBackground(Color.DARK_GRAY);
    }

}

共有2个答案

容磊
2023-03-14

您的JPanel是使用默认构造函数构造的,这意味着它有一个FlowLayout作为LayoutManager。这意味着手动设置每个按钮的边界会产生奇怪的效果。尝试使用您喜欢的适当的LayoutManager。或者创建一个自定义的LayoutManager(通过实现该接口),它不会在重新验证时更改组件的位置。

关于LayoutManagers有相应的教程:
https://docs.oracle.com/javase/tutorial/uiswing/layout/index.html

注意:JPanel是一个Container,这就是为什么本教程也适用于JPanels。您已经使用了一个LayoutManager(名为BorderLayout)为JFrame命名为frame...对于JPanel,您也应该这样做。默认情况下,它有一个FlowLayout,但是通过手动设置每个JButton的边界,人们可以理解您并不真正需要一个FlowLayout,但可能需要其他东西。您可以在您的问题中给我们一张图片,说明您希望布局是什么样子的,这样我们就可以告诉您要尝试的LayoutManager的方向。

因为你试图创建一个计算器,我建议尝试GridLayout3列(和0作为参数,这将使网格总是创建一个新的行当已经达到3列时)。

卢承弼
2023-03-14

不要使用静态变量。不要使用静态方法。这不是正确的设计。

然后你们班可以:

  1. 创建所需的实例变量。
  2. 创建并将所有按钮添加到面板。

不需要为每个按钮创建单独的方法。使用循环创建每个按钮,然后将其添加到面板中。面板应该使用布局管理器,这样您就不必担心按钮的大小/位置。网格布局将很容易使用。它将在行/列网格中添加按钮。

请参阅:如何在java中为jbutton添加快捷键?对于使用此方法的工作示例。它将为你的班级展示一个更好的设计,包含了以上所有的建议。

奇怪的是,当我悬停并在按钮上点击鼠标时,按钮就会出现。

在框架可见之前,应将组件添加到框架中。

 类似资料:
  • 我有很多内置按钮的JPanel。我想在屏幕上的鼠标位置下检测JButton。 我得到鼠标的位置 我要检查这个位置上是否有JButton,并获取这个按钮。 例子: 按钮左角位于屏幕位置(50,50),按钮大小为宽度=100,高度=50,鼠标位于屏幕位置(70,70)。 如何检测此位置上是否存在JButton?

  • 为了解决这个问题,我尝试了许多JDK版本,但似乎无论我使用哪个java,结果总是一样的。 MavenReportException:创建存档时出错:无法找到javadoc命令:未正确设置环境变量JAVA_HOME。 我跑了: 导出JAVA_HOME=/usr/lib/jvm/JAVA-8-openjdk-amd64 : MavenReportException:创建存档时出错:无法找到javado

  • 我已经阅读了这篇文章,并确保将TEMP和TMP的系统变量和用户变量分别设置为C:\TEMP和C:\TMP。我已经重新启动了我的机器两次,但当我的应用程序调用系统时。getProperty(“java.io.tmpdir”)它一直指向C:\Program Files\Apache Software Foundation\Tomcat 8.5\temp。为什么要这样做?我如何才能让它指向C:\Temp

  • 问题内容: 我应该在Eclipse项目中的哪个位置添加文件,以便它可以按预期工作? 问题答案: 您可以将其添加到任意位置,在运行项目时,通过单击以下命令来配置类路径并添加log4j.properties文件的位置:运行->运行配置-> [类路径选项卡]->单击用户条目- >高级->选择添加文件夹->选择log4j.properties文件的位置 然后->确定->运行 它应该被加载

  • 我正在以卫星模式查看谷歌地图,如果这有什么不同的话。下面是如何初始化映射的。 下面是标记的放置方式(myIcon是在另一个函数中创建的js svg对象):