重叠JTextField和JLabel

时间:2016-02-07 16:10:06

标签: java netbeans jlabel jtextfield

顶部的是带有图像的JLabel。我想要里面的JTextfield。

The one on top is a JLabel with an image. I want the JTextfield inside it.

我想重叠JLabel和JTextField,但我有各种各样的问题。我正在使用Netbeans。我怎样才能做到这一点?请帮助。

1 个答案:

答案 0 :(得分:2)

您可以创建提供此功能的JPanel:

public class JTextFieldWithIcon extends JPanel {

    private JTextField jtextfield;
    private ImageIcon image;

    public JTextFieldWithIcon(ImageIcon imgIco, String defaultText) {
        super();
        this.image = imgIco;
        setLayout(null);

        this.jtextfield = new JTextField(defaultText);
        jtextfield.setBorder(BorderFactory.createEmptyBorder());
        jtextfield.setBackground(new Color(0, 0, 0, 0));
        jtextfield.setBounds(50, 0, 286, 40);
        add(jtextfield);

        JLabel imageLbl = new JLabel();
        imageLbl.setBounds(0, 0, 286, 40);
        imageLbl.setIcon(imgIco);
        add(imageLbl);
    }

    public Icon getIcon() {
        return this.image;
    }

    public JTextField getJTextField() {
        return this.jtextfield;
    }

}

上面的代码产生了这个:

Result of above code

另一种方法是将图像排列在JTextField的左侧。

import java.awt.BorderLayout;

import javax.swing.Icon;
import javax.swing.ImageIcon;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.JTextField;

public class JTextFieldWithIcon extends JPanel {


    private JTextField jtextfield;
    private ImageIcon image;

    public JTextFieldWithIcon(ImageIcon imgIco,String defaultText) {
        super();
        setLayout(new BorderLayout());

        this.jtextfield = new JTextField(defaultText);
        this.image = imgIco;

        JLabel imageLbl = new JLabel();
        imageLbl.setIcon(image);
        add(imageLbl,BorderLayout.WEST);
        add(jtextfield,BorderLayout.CENTER);
    }

    public Icon getIcon(){
        return this.image;
    }

    public JTextField getJTextField(){
        return this.jtextfield;
    }

}

注意:上述代码中的ImageIcon未自动缩放。您可能希望预先缩放ImageIcon以使其与JTextField具有相同的高度,或者将该逻辑添加到构造函数中。