在另一个JLabel前显示JLabel

时间:2016-04-16 14:10:07

标签: java image swing jlabel

 Game(){
    JFrame frame = new JFrame("Display Image");
    JPanel panel = (JPanel)frame.getContentPane();
    frame.setSize(1000,625);
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    JLabel label = new JLabel();
    label.setIcon(new ImageIcon("C:/Users/Ragnar/Desktop/GameBoard.png"));
    panel.add(label);
    frame.setLocationRelativeTo(null);
    frame.pack();
    frame.setVisible(true);
}

所以我有这个构造函数,我想添加一些带有图像的新JLabel,但我希望它们显示在第一个图像的顶部,这是第一个jLabel标签的图像。任何人都可以指导我如何实现这一点拜托?我试着像往常一样添加它们,但它们会显示在标签后面。

3 个答案:

答案 0 :(得分:3)

如果您有背景图片,并希望在背景图片上显示JLabel,则可以使用JPanel来保存背景图片,然后添加JLabel

通常,如果您尝试让2 JLabel相互重叠,则由于容器使用的默认布局管理器(例如FlowLayout中的JPanel或{{},它将无法成功1}}在BorderLayout)。

如果你真的想让他们超过一圈,你必须将布局设置为null。但是,当您失去对组件外观的控制时,它们可能会引入新问题。

因此,在这种情况下,我通常会去自定义绘画,并以您感兴趣的任何特定顺序绘制您想要的图像。

例如How to create a background and foreground image which overlaps?

答案 1 :(得分:0)

如果您正在使用eclipse,并且已经安装了windowbuilder插件,则可以使用图形编辑视图。

android studio apk file screenshot

在此视图中,使用上下文菜单对元素进行排序。 enter image description here

答案 2 :(得分:-1)

对我有用的是,使用方法add(component)添加组件时,将它们从前到后依次添加。在下面的示例中,我向JFrame添加了许多组件,最后要添加的是墙纸,因此它保留在背景中。

import java.awt.Image;
import java.awt.*;
import java.awt.event.*;

import javax.swing.*;
import javax.swing.border.*;




public class LogIn extends JFrame implements ActionListener{
    public static JFrame operador;`enter code here`
    private JLabel logo, foot, mensaje, wallpaper;
    private JTextField fldUser;
    private JPasswordField fldPass;
    private JButton entrar;
    private int ancho =400, largo= 530;
    public static String user="", pass="", name;

    public LogIn() {
        setLayout(null);
        setDefaultCloseOperation(EXIT_ON_CLOSE);
        setSize(ancho,largo);
        setResizable(false);
        setTitle("Acceso al sitema");
        setLocationRelativeTo(null);
        setIconImage(getIconImage());

        fldUser = new JTextField();
        fldUser.setHorizontalAlignment(JTextField.CENTER);
        fldUser.setBounds(125,320,150,25);
        fldUser.setBackground(new Color(50,50,255));
        fldUser.setForeground(Color.WHITE);
        fldUser.setBorder(new SoftBevelBorder(BevelBorder.LOWERED));
        add(fldUser);

        fldPass = new JPasswordField();
        fldPass.setHorizontalAlignment(JTextField.CENTER);
        fldPass.setBounds(125,360,150,25);
        fldPass.setBackground(new Color(50,50,255));
        fldPass.setForeground(Color.WHITE);
        fldPass.setBorder(new SoftBevelBorder(BevelBorder.LOWERED));
        add(fldPass);

        mensaje= new JLabel();
        mensaje.setBounds(0,390,ancho,15);
        mensaje.setForeground(Color.RED);
        mensaje.setHorizontalAlignment(SwingConstants.CENTER);
        add(mensaje);
        entrar =new JButton("Entrar");
        entrar.setBounds(125,410,150,40);
        entrar.setForeground(new Color(50,50,255));
        //entrar.setBorder(new SoftBevelBorder(BevelBorder.RAISED));
        entrar.addActionListener(this);
        add(entrar);

        logo = new JLabel();
        logo.setBounds(50,0,300,300);
        ImageIcon imgLogo= new ImageIcon("src/images/DS.png");
        Icon iconoLogo = new ImageIcon(imgLogo.getImage().getScaledInstance(logo.getWidth(),logo.getHeight(), Image.SCALE_DEFAULT));
        logo.setIcon(iconoLogo);


        foot = new JLabel("Desarrollado por Gabriel Santos");
        foot.setBounds((ancho-200)/2,largo-60,200,30);

    //When JLabels overlap, the ones that come to the front are the first to be added to the window.
        add(foot);
        add(logo);

        wallpaper = new JLabel();
        wallpaper.setBounds(0,0,window.getWidth(),window.getHeight());
        ImageIcon img = new ImageIcon("src/images/wallpaperPrincipal.jpg");
        Icon icono = new ImageIcon(img.getImage().getScaledInstance(this.getWidth(),this.getHeight(), Image.SCALE_DEFAULT));    
        wallpaper.setIcon(icono);

        add(wallpaper);

        setVisible(true);
    }

}