Warning: file_get_contents(/data/phpspider/zhask/data//catemap/9/java/329.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Java GridBagLayout不';t接受我的rowspan命令(gridtheight)_Java_Swing_User Interface_Layout Manager_Gridbaglayout - Fatal编程技术网

Java GridBagLayout不';t接受我的rowspan命令(gridtheight)

Java GridBagLayout不';t接受我的rowspan命令(gridtheight),java,swing,user-interface,layout-manager,gridbaglayout,Java,Swing,User Interface,Layout Manager,Gridbaglayout,我即将学习Java。我正在尝试为一个简单的计算器编写一个GUI,它有一个GridBagLayout 问题是我的“+”按钮没有超过2行高。我不知道为什么?我在最后一行尝试了一次: 每两年一次。最后一排 这是gui的代码,如果你想测试它,也许你必须调整主界面 package gui; import classes.Rechner; import javax.swing.*; import java.awt.*; import java.awt.event.ActionEvent; import

我即将学习Java。我正在尝试为一个简单的计算器编写一个GUI,它有一个GridBagLayout

问题是我的“+”按钮没有超过2行高。我不知道为什么?我在最后一行尝试了一次:

每两年一次。最后一排

这是gui的代码,如果你想测试它,也许你必须调整主界面

package gui;

import classes.Rechner;

import javax.swing.*;
import java.awt.*;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.KeyEvent;
import java.awt.event.KeyListener;

/**
 * Created by tq67 on 17.07.2014.
 */
public class CalculatorGUI extends JFrame {

public static void main(String[] args) {

    CalculatorGUI gui = new CalculatorGUI();
    gui.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    gui.setVisible(true);


}

    public CalculatorGUI() {
        setTitle("Calculator");
        setBounds(300, 300, 220, 225);

        JPanel subpanel = new JPanel();
        JPanel headpanel = new JPanel();
        final JTextField input = new JTextField();

        input.addKeyListener(new KeyListener() {
            @Override
            public void keyTyped(KeyEvent e) {

            }

            @Override
            public void keyPressed(KeyEvent e) {

            }

            @Override
            public void keyReleased(KeyEvent e) {
                if (10 == e.getKeyCode()) {
                    Rechner rechner = new Rechner(input.getText());
                    input.setText(rechner.rechnen().toPlainString());
                }
                if (27 == e.getKeyCode()) {
                    input.setText("");
                }
            }
        });
        ActionListener buttonListener = new ActionListener() {
            @Override
            public void actionPerformed(ActionEvent e) {
                input.setText(input.getText() + e.getActionCommand());
            }
        };
        ActionListener resultListener = new ActionListener() {
            @Override
            public void actionPerformed(ActionEvent e) {
                if (e.getActionCommand().equals("=")) {
                    Rechner rechner = new Rechner(input.getText());
                    input.setText(rechner.rechnen().toPlainString());
                } else {
                    input.setText("");
                }

            }

            private void calc() {
                Rechner rechner = new Rechner(input.getText());
                input.setText(rechner.rechnen().toPlainString());
            }
        };

        JButton b1 = new JButton("1");
        JButton b2 = new JButton("2");
        JButton b3 = new JButton("3");
        JButton b4 = new JButton("4");
        JButton b5 = new JButton("5");
        JButton b6 = new JButton("6");
        JButton b7 = new JButton("7");
        JButton b8 = new JButton("8");
        JButton b9 = new JButton("9");
        JButton b0 = new JButton("0");

        JButton bdot = new JButton(".");
        JButton bplus = new JButton("+");
        JButton bminus = new JButton("-");
        JButton bdiv = new JButton("/");
        JButton bmult = new JButton("*");
        JButton bresult = new JButton("=");

        JButton bcancel = new JButton("C");
        b1.addActionListener(buttonListener);
        b2.addActionListener(buttonListener);
        b3.addActionListener(buttonListener);
        b4.addActionListener(buttonListener);
        b5.addActionListener(buttonListener);
        b6.addActionListener(buttonListener);
        b7.addActionListener(buttonListener);
        b8.addActionListener(buttonListener);
        b9.addActionListener(buttonListener);
        b0.addActionListener(buttonListener);
        bdot.addActionListener(buttonListener);
        bplus.addActionListener(buttonListener);
        bminus.addActionListener(buttonListener);
        bdiv.addActionListener(buttonListener);
        bmult.addActionListener(buttonListener);

        bresult.addActionListener(resultListener);
        bcancel.addActionListener(resultListener);

        headpanel.setLayout(new GridBagLayout());
        subpanel.setLayout(new GridBagLayout());
        GridBagConstraints c = new GridBagConstraints();




        c.fill = GridBagConstraints.HORIZONTAL;
        c.weightx = 1;
        c.weighty = 3;
        c.gridx = 0;
        c.gridy = 0;
        c.ipady = 10;
        headpanel.add(input, c);

        setLayout(new BorderLayout());
        add(headpanel, BorderLayout.NORTH);
        add(subpanel, BorderLayout.SOUTH);
        c.fill = GridBagConstraints.HORIZONTAL;
        c.ipady = 0;
        c.gridx = 0;
        c.gridy = 0;
        subpanel.add(b7, c);
        c.gridx++;
        subpanel.add(b8, c);
        c.gridx++;
        subpanel.add(b9, c);
        c.gridx++;
        subpanel.add(bmult, c);

        c.fill = GridBagConstraints.HORIZONTAL;
        c.gridx = 0;
        c.gridy = 1;
        subpanel.add(b4, c);
        c.gridx++;
        subpanel.add(b5, c);
        c.gridx++;
        subpanel.add(b6, c);
        c.gridx++;
        subpanel.add(bdiv, c);


        c.fill = GridBagConstraints.HORIZONTAL;
        c.gridx = 0;
        c.gridy = 2;
        subpanel.add(b1, c);
        c.gridx++;
        subpanel.add(b2, c);
        c.gridx++;
        subpanel.add(b3, c);
        c.gridx++;
        subpanel.add(bminus, c);


        c.fill = GridBagConstraints.HORIZONTAL;
        c.gridheight = 1;
        c.ipady = 0;
        c.gridx = 0;
        c.gridy = 3;
        subpanel.add(bdot, c);
        c.gridwidth = 2;
        c.gridx++;
        subpanel.add(b0, c);
        c.gridwidth = 1;
        c.gridx = 3;
        c.gridheight = 2;
        c.ipady = 26;
        subpanel.add(bplus, c);


        c.fill = GridBagConstraints.HORIZONTAL;
        c.gridwidth = 1;
        c.ipady = 0;
        c.gridx = 0;
        c.gridy = 4;
        subpanel.add(bcancel, c);
        c.gridx = 1;
        c.gridwidth = 2;
        subpanel.add(bresult, c);

    }
}
我在Stackoverflow中读到一个bug,当您使用的gridx大于0时,您将遇到gridheight的问题

此时,GUI看起来是这样的:


谢谢您的帮助。

有两件事,首先,在使用后重置
gridheight

c.gridwidth = 1;
c.gridx = 3;
c.gridheight = 2;
c.ipady = 26;
subpanel.add(bplus, c);

c.fill = GridBagConstraints.HORIZONTAL;
c.gridwidth = 1;
c.ipady = 0;
c.gridx = 0;
c.gridy = 4;
// Still using the gridheight of 2...
subpanel.add(bcancel, c);
应该更像

c.fill = GridBagConstraints.HORIZONTAL;
c.gridwidth = 1;
c.ipady = 0;
c.gridx = 0;
c.gridy = 4;
c.gridheight = 1;
subpanel.add(bcancel, c);
我还将去掉
c.ipady=26,但那是我;)

第二,同时使用
填充约束

c.fill = GridBagConstraints.BOTH;
c.gridwidth = 1;
c.gridx = 3;
c.gridheight = 2;
c.ipady = 26;
subpanel.add(bplus, c);

还有

public void keyReleased(KeyEvent e) {
    if (10 == e.getKeyCode()) {
        Rechner rechner = new Rechner(input.getText());
        input.setText(rechner.rechnen().toPlainString());
    }
    if (27 == e.getKeyCode()) {
        input.setText("");
    }
}

keyCode
不表示ASCII字符,而是表示虚拟密钥代码。你应该使用
KeyEvent.VK\u ENTER
(我想)和
KeyEvent.VK\u ESCAPE
。注意,
JTextField
已经有能力处理
ActionListener
界面的输入。在任何情况下,你应该考虑使用API,如果可能的话,

thx很多!我的TF不接受输入代码:(如果我不这样实现它…但我会尝试使用KeyEvent解决方案…使用KeyEvent解决方案的优势在哪里呢?您需要添加一个(还有。使用
KeyEvent.VK.*
方法的优点在于它的使用方式。实际的硬件按键笔划由Java转换为虚拟按键表示形式。我还摆脱了c.ipady表达式,这是非常不实际的。有没有一种不用它的简单方法?这取决于,你试图实现sam的目的是什么但是这不是这个问题的主题。所以我以后会研究它。。。
c.fill = GridBagConstraints.BOTH;
c.gridwidth = 1;
c.gridx = 3;
c.gridheight = 2;
c.ipady = 26;
subpanel.add(bplus, c);
public void keyReleased(KeyEvent e) {
    if (10 == e.getKeyCode()) {
        Rechner rechner = new Rechner(input.getText());
        input.setText(rechner.rechnen().toPlainString());
    }
    if (27 == e.getKeyCode()) {
        input.setText("");
    }
}