将JLabel置于JLabel之上,其中包含图像

时间:2012-09-03 21:02:33

标签: java swing jpanel jlabel

我很确定之前已经问过这个问题,但我的情况略有不同,因为我试图将JLabel放在作为背景的JLabel之上,我希望使用JLabel显示更改的数字和数字需要在背景上显示,但是我有点摇摆n00b,在此先感谢Jonathan

3 个答案:

答案 0 :(得分:9)

如果您不需要完全理解您的要求,如果您只需要在背景图片上显示文字,那么最好将标签放在能够绘制背景的自定义面板上。

你可以在没有混乱的情况下获得布局管理器的好处。

我首先要有一个阅读槽Performing Custom PaintingGraphics2D Trail

如果这似乎令人生畏,JLabel实际上是一种Container,这意味着它实际上可以“包含”其他组件。

示例

背景窗格......

public class PaintPane extends JPanel {

    private Image background;

    public PaintPane(Image image) {     
        // This is just an example, I'd prefer to use setters/getters
        // and would also need to provide alignment options ;)
        background = image;            
    }

    @Override
    public Dimension getPreferredSize() {
        return background == null ? new Dimension(0, 0) : new Dimension(background.getWidth(this), background.getHeight(this));            
    }

    @Override
    protected void paintComponent(Graphics g) {

        super.paintComponent(g);

        if (background != null) {                
            Insets insets = getInsets();

            int width = getWidth() - 1 - (insets.left + insets.right);
            int height = getHeight() - 1 - (insets.top + insets.bottom);

            int x = (width - background.getWidth(this)) / 2;
            int y = (height - background.getHeight(this)) / 2;

            g.drawImage(background, x, y, this);                
        }

    }

}

用...构建

public TestLayoutOverlay() throws IOException { // Extends JFrame...

    setTitle("test");
    setLayout(new GridBagLayout());
    setDefaultCloseOperation(EXIT_ON_CLOSE);

    PaintPane pane = new PaintPane(ImageIO.read(new File("fire.jpg")));
    pane.setLayout(new BorderLayout());
    add(pane);

    JLabel label = new JLabel("I'm on fire");
    label.setFont(label.getFont().deriveFont(Font.BOLD, 48));
    label.setForeground(Color.WHITE);
    label.setHorizontalAlignment(JLabel.CENTER);
    pane.add(label);

    pack();
    setLocationRelativeTo(null);
    setVisible(true);

}

只是为了表明我没有偏见;),一个使用标签的例子......

public TestLayoutOverlay() {

    setTitle("test");
    setLayout(new GridBagLayout());
    setDefaultCloseOperation(EXIT_ON_CLOSE);

    JLabel background = new JLabel(new ImageIcon("fire.jpg"));
    background.setLayout(new BorderLayout());
    add(background);

    JLabel label = new JLabel("I'm on fire");
    label.setFont(label.getFont().deriveFont(Font.BOLD, 48));
    label.setForeground(Color.WHITE);
    label.setHorizontalAlignment(JLabel.CENTER);
    background.add(label);

    pack();
    setLocationRelativeTo(null);
    setVisible(true);

}

On fire

答案 1 :(得分:0)

在运行时:

  • 从其父级
  • 中删除标签
  • 添加一个支持图层的容器
  • 添加2x图层,但保留Z顺序

享受。 (没有给出复制粘贴的完整代码)

答案 2 :(得分:-3)

你可以这样做:

JLabel l1=new JLabel();
JLabel l2=new JLabel();
l1.add(l2, JLabel.NORTH);