尝试使用 JFrame 设置 Java 按钮的位置不起作用?

Trying to set the location of a Java Button using JFrame isn't working?

请查看下面的编辑内容。

所以我查看了很多 "solutions" 来解决我的问题,但我似乎无法让它工作。

这就是我的应用程序使用以下代码的样子:

基本上,我想设置一个按钮的位置,但我做不到。这是我的代码:

package me.cervinakuy.application;

import java.awt.BorderLayout;
import java.awt.Color;
import java.awt.GridLayout;

import javax.swing.ImageIcon;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JPanel;

public class ControlPanel3 extends JFrame {

    JPanel panel = new JPanel();

    JButton startRobo = new JButton();
    JButton stopRobo = new JButton();
    JButton restartRobo = new JButton();

    public ControlPanel3() {

//      setLayout(null);
        setSize(1000, 700);
        setResizable(false);
        setLocation(450, 150);
        setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        getContentPane().setBackground(new Color(45, 48, 55));
        setTitle("Espin Software | Control Panel");
        setVisible(true);

        startRobo.setIcon(new ImageIcon(getClass().getResource("/resources/startRobo.png")));
        stopRobo.setIcon(new ImageIcon(getClass().getResource("/resources/stopRobo.png")));
        restartRobo.setIcon(new ImageIcon(getClass().getResource("/resources/restartRobo.png")));

        startRobo.setBorder(null);
        stopRobo.setBorder(null);
        restartRobo.setBorder(null);

        startRobo.setLocation(100, 100);

        panel.add(startRobo);
        panel.add(stopRobo);
        panel.add(restartRobo);
        panel.setOpaque(false);

        add(panel);

        validate();

    }

}

编辑: 我现在已经设法创建了我最初寻找的 GUI,但是,我遇到了一个新问题。现在可以从 GUI 的不同部分按下按钮,而不仅仅是在图像上。对于那些感兴趣的人,这是我能够完成的:

New GUI look.

更新代码:

package me.cervinakuy.application;

import java.awt.Color;
import javax.swing.ImageIcon;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JPanel;

public class ControlPanel3 extends JFrame {

    JPanel panel = new JPanel();

    JButton startRobo = new JButton();
    JButton stopRobo = new JButton();
    JButton restartRobo = new JButton();

    public ControlPanel3() {

//      setLayout(null);
        setSize(1000, 700);
        setResizable(false);
        setLocation(450, 150);
        setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        getContentPane().setBackground(new Color(45, 48, 55));
        setTitle("Espin Software | Control Panel");
        setVisible(true);

        startRobo.setIcon(new ImageIcon(getClass().getResource("/resources/startRobo.png")));
        stopRobo.setIcon(new ImageIcon(getClass().getResource("/resources/stopRobo.png")));
        restartRobo.setIcon(new ImageIcon(getClass().getResource("/resources/restartRobo.png")));

        startRobo.setBorder(null);
        stopRobo.setBorder(null);
        restartRobo.setBorder(null);

        panel.setLayout(null);
        startRobo.setLocation(200, 200);
        startRobo.setBounds(5, -95, 300, 300);
        stopRobo.setBounds(5, 0, 300, 300);
        restartRobo.setBounds(5, 95, 300, 300);

        panel.add(startRobo);
        panel.add(stopRobo);
        panel.add(restartRobo);
        panel.setOpaque(false);

        add(panel);

        validate();

    }

}

通常有多种方法来布置以相同效果结尾的组件。在此示例中,我们使用面板将按钮包含在列中(buttonContainer 使用 GridLayout),然后使用面板将容器限制在顶部(buttonConstrainPanel 使用 BorderLayout) 然后是一个容器,用于将该面板放在左侧(uiBorderLayout)。

它也可以使用单个 GridBagLayoutGroupLayout 来实现,尽管实现它的逻辑可能并不那么简单。

蓝色按钮上的焦点边框表示单击鼠标可激活按钮的范围。

import java.awt.*;
import java.net.MalformedURLException;
import java.net.URL;
import javax.swing.*;
import javax.swing.border.EmptyBorder;

public class ThreeButtonAlignedLeft {

    private JComponent ui = null;
    private String prefix = "http://i.stack.imgur.com/";
    private String[] suffix = {"gJmeJ.png","T5uTa.png","wCF8S.png"};

    ThreeButtonAlignedLeft() {
        try {
            initUI();
        } catch (MalformedURLException ex) {
            ex.printStackTrace();
        }
    }

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

        ui = new JPanel(new BorderLayout(4,4));
        ui.setBorder(new EmptyBorder(4,4,4,4));

        JPanel buttonContainer = new JPanel(new GridLayout(0, 1, 5, 5));
        for (int ii=0; ii<suffix.length; ii++) {
            JButton b = new JButton(new ImageIcon(new URL(prefix + suffix[ii])));
            b.setBorderPainted(false);
            b.setMargin(new Insets(0,0,0,0));
            b.setContentAreaFilled(false);
            buttonContainer.add(b);
        }
        JPanel buttonConstrainPanel = new JPanel(new BorderLayout(0, 0));
        buttonConstrainPanel.add(buttonContainer, BorderLayout.PAGE_START);

        ui.add(buttonConstrainPanel, BorderLayout.LINE_START);
    }

    public JComponent getUI() {
        return ui;
    }

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

                JFrame f = new JFrame(o.getClass().getSimpleName());
                f.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
                f.setLocationByPlatform(true);

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

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