Java - 文本字段上的占位符

2022-09-03 06:07:13

我正在尝试使用 Swing 创建一个 GUI。我的问题是,我有一个文本字段,但我希望它有一个“占位符”(如html)。我在这里和那里读到,它可以通过覆盖文本字段的paint()来完成。

由于我的代码是生成的,我发现我需要使用“自定义创建代码”来覆盖生成的代码。

这是我在“自定义创建代码”字段中放置的内容

new javax.swing.JTextField()
{
    String test = super.getText();
    String hint = "Username";

    public void paint(Graphics g)
    {
        if ( test == null || test.length() < 1 ) {
            g.setColor( Color.red );
            g.drawString(hint, 0, 0);
        }

        g.setColor(Color.BLACK);
        super.paint(g);
    }
}

这将生成以下输出

javax.swing.JTextField username = new javax.swing.JTextField()
{
    String test = super.getText();
    String hint = "Username";

    public void paint(Graphics g)
    {
        if ( test == null || test.length() < 1 ) {
            g.setColor( Color.red );
            g.drawString(hint, 0, 0);
        }

        g.setColor(Color.BLACK);
        super.paint(g);
    }
};

现在我看到了textField,但其中没有任何内容,也许我需要在某些事件中添加一些功能,但我不确定。

如果有人能伸出援手,我将不胜感激。

编辑:这是我想做的事情的演示:http://davidwalsh.name/demo/html5-placeholder.php


答案 1

我在甲骨文论坛上找到了这个。

public class TextFieldWithPrompt extends JTextField{

@Override
protected void paintComponent(java.awt.Graphics g) {
    super.paintComponent(g);

    if(getText().isEmpty() && ! (FocusManager.getCurrentKeyboardFocusManager().getFocusOwner() == this)){
        Graphics2D g2 = (Graphics2D)g.create();
        g2.setBackground(Color.gray);
        g2.setFont(getFont().deriveFont(Font.ITALIC));
        g2.drawString("zip", 5, 10); //figure out x, y from font's FontMetrics and size of component.
        g2.dispose();
    }
  }

https://forums.oracle.com/forums/thread.jspa?threadID=1349874


答案 2

我用来覆盖文本字段的绘画方法,直到我最终得到更多的自定义文本字段,然后我真的想要...

然后我发现了这个提示API,它易于使用,不需要您扩展任何组件。它还有一个很好的“伙伴”API

这现在已经包含在SwingLabs,SwingX库中,这使得它更容易使用...


推荐