Warning: file_get_contents(/data/phpspider/zhask/data//catemap/9/java/322.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中使用JLabel创建后台后,无法将其他组件添加到窗口_Java_Swing - Fatal编程技术网

在Java中使用JLabel创建后台后,无法将其他组件添加到窗口

在Java中使用JLabel创建后台后,无法将其他组件添加到窗口,java,swing,Java,Swing,我想创建一个类似于小部件的java应用程序。下面是我的代码 package newpackage; public class MainFrame extends JFrame { JLabel imageLabel = new JLabel(); public MainFrame() { try { this.setUndecorated(true); setDefaultCloseOperation(EXIT

我想创建一个类似于小部件的java应用程序。下面是我的代码

package newpackage;


public class MainFrame extends JFrame {
    JLabel imageLabel = new JLabel();

    public MainFrame() {
        try {
            this.setUndecorated(true);
            setDefaultCloseOperation(EXIT_ON_CLOSE);
            setSize(new Dimension(360, 360));
            ImageIcon ii = new ImageIcon(this.getClass().getResource("imageexcel.gif"));
            imageLabel.setIcon(ii);
            add(imageLabel, java.awt.BorderLayout.CENTER);
            this.setVisible(true);

            Shape shape=new Ellipse2D.Float(0,0,360,360);
            AWTUtilities.setWindowShape(this, shape);
            AWTUtilities.setWindowOpaque(this, false);

            imageLabel.add(new JButton("START"));

        } catch (Exception exception) {
            exception.printStackTrace();
        }
    }

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

}
在上述代码中,我完成了以下操作:

  • 创建了一个框架
  • 删除了标题栏
  • 使用JLabel添加了背景
  • 根据图像形状将窗口形状更改为圆形
  • 现在,我想向其中添加一些组件,并对它们执行一些操作,但添加后没有可见的组件

    我已经尝试过添加到Frame和JLabel中,但都没有用

    请帮我继续


    感谢您

    jLabel默认使用空布局,因此您的按钮默认大小为0,0。试着给它一个像样的布局管理器,即使FlowLayout也可能会工作。另一个解决方案是保持空布局,并设置添加组件的大小和位置,但这是一个危险的路线,我不建议这样做

    实际上,GridBagLayout可以很好地将组件居中放置。在调用
    setVisible(true)
    之前添加所有组件

    还是更好

    import java.awt.Dimension;
    import java.awt.Graphics;
    import java.awt.GridBagLayout;
    import java.awt.Image;
    import java.awt.Shape;
    import java.awt.Window;
    import java.awt.event.ActionEvent;
    import java.awt.event.KeyEvent;
    import java.awt.geom.Ellipse2D;
    import java.net.URL;
    import javax.swing.*;
    import com.sun.awt.AWTUtilities;
    
    @SuppressWarnings("serial")
    public class MainPanelOvalFrame extends JPanel {
        private static final String RESOURCE_PATH = "imageexcel.gif";
        private Window window;
        private Image img;
    
        public MainPanelOvalFrame(Window window, Image image) {
            this.window = window;
            this.img = image;
    
            setLayout(new GridBagLayout());
            add(new JButton(new StartAction("Start", KeyEvent.VK_S)));
    
            int w = image.getWidth(this);
            int h = image.getHeight(this);
            Shape shape = new Ellipse2D.Float(0, 0, w, h);
            AWTUtilities.setWindowShape(window, shape);
            AWTUtilities.setWindowOpaque(window, false);
        }
    
        @Override
        protected void paintComponent(Graphics g) {
            super.paintComponent(g);
            if (img != null) {
                g.drawImage(img, 0, 0, this);
            }
        }
    
        @Override
        public Dimension getPreferredSize() {
            if (isPreferredSizeSet() || img == null) {
                return super.getPreferredSize();
            }
            int w = img.getWidth(this);
            int h = img.getHeight(this);
            return new Dimension(w, h);
        }
    
        private class StartAction extends AbstractAction {
            public StartAction(String name, int mnemonic) {
                super(name);
                putValue(MNEMONIC_KEY, mnemonic);
            }
    
            @Override
            public void actionPerformed(ActionEvent e) {
                window.dispose();
            }
        }
    
        private static void createAndShowGui() {
            JFrame frame = new JFrame();
            frame.setUndecorated(true);
            URL imgUrl = MainPanelOvalFrame.class.getResource(RESOURCE_PATH);
            Image image = new ImageIcon(imgUrl).getImage();
            MainPanelOvalFrame mainPanel = new MainPanelOvalFrame(frame, image);
    
            frame.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
            frame.getContentPane().add(mainPanel);
            frame.pack();
            frame.setLocationRelativeTo(null);
            frame.setVisible(true);
        }
    
        public static void main(String[] args) {
            SwingUtilities.invokeLater(new Runnable() {
                public void run() {
                    createAndShowGui();
                }
            });
        }
    }
    

    您只需要为imageLabel设置布局管理器,或者使用null作为布局管理器,然后手动设置JButton的大小和位置

    使用布局管理器

        imageLabel.setIcon(ii);
        imageLabel.setLayout(new FlowLayout());
        imageLabel.add(new JButton("START"));
    
        //need to setLayout and add JButton before setVisible(true)   
        add(imageLabel, java.awt.BorderLayout.CENTER);
        this.setVisible(true);
    
    使用空布局

        JButton j=new JButton("START");
        j.setSize(100,50);
        j.setLocation(imageLabel.getWidth()/2-j.getWidth()/2, imageLabel.getHeight()/2-j.getHeight()/2);
        //then add Button into imageLabel
        imageLabel.add(j);
    
    通常推荐使用布局管理器,因为它可以适应不同的环境

        JButton j=new JButton("START");
        j.setSize(100,50);
        j.setLocation(imageLabel.getWidth()/2-j.getWidth()/2, imageLabel.getHeight()/2-j.getHeight()/2);
        //then add Button into imageLabel
        imageLabel.add(j);