12

netbeans を使用して作成されたアプリケーションが読み込まれると、最初の JTextField が自動的にフォーカスされ、この JTextField に「ユーザー名を入力してください」と書きました。ユーザーがこのフィールドをクリックすると消えますが、アプリケーションが読み込まれると消えます。 、このフィールドはフォーカスされています。「ユーザー名を入力してください」が表示されないことを意味します。起動時にフォーカスを解除するにはどうすればよいですか?

4

4 に答える 4

14

ログインはモーダル ダイアログで行うのが最適ですが、コンポーネントが表示された後requestFocusInWindow()にメソッドを呼び出さなければならないという問題が発生しますが、ダイアログがモーダルであるという事実によってブロックされます。

この例では、ダイアログが表示された後にフォーカスを管理するために、 Rob Camick のRequestFocusListener( Dialog Focusで示されているように) を使用しています。

フォーカスされたパスワードフィールドでログイン

注:これは、ユーザーが何かを行う前に表示される方法です。パスワード フィールドはデフォルトでフォーカスされています。

import java.awt.*;
import javax.swing.*;
import javax.swing.event.*;

public class LoginRequired {

    LoginRequired() {
        JFrame f = new JFrame("Login Required");
        f.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);

        f.setResizable(false);
        f.setSize(400, 300); // not recommended, but used here for convenience
        f.setLocationByPlatform(true);
        f.setVisible(true);

        showLogin(f);
    }

    private void showLogin(JFrame frame) {
        JPanel p = new JPanel(new BorderLayout(5,5));

        JPanel labels = new JPanel(new GridLayout(0,1,2,2));
        labels.add(new JLabel("User Name", SwingConstants.TRAILING));
        labels.add(new JLabel("Password", SwingConstants.TRAILING));
        p.add(labels, BorderLayout.LINE_START);

        JPanel controls = new JPanel(new GridLayout(0,1,2,2));
        JTextField username = new JTextField("Joe Blogs");
        controls.add(username);
        JPasswordField password = new JPasswordField();
        password.addAncestorListener(new RequestFocusListener(false));
        controls.add(password);
        p.add(controls, BorderLayout.CENTER);

        JOptionPane.showMessageDialog(
            frame, p, "Log In", JOptionPane.QUESTION_MESSAGE);
        System.out.println("User Name: " + username.getText());
        System.out.println("Password: " + new String(password.getPassword()));
    }

    public static void main(String[] args) {
        SwingUtilities.invokeLater(() -> {
            new LoginRequired();
        });
    }
}

/**
 *  Convenience class to request focus on a component.
 *
 *  When the component is added to a realized Window then component will
 *  request focus immediately, since the ancestorAdded event is fired
 *  immediately.
 *
 *  When the component is added to a non realized Window, then the focus
 *  request will be made once the window is realized, since the
 *  ancestorAdded event will not be fired until then.
 *
 *  Using the default constructor will cause the listener to be removed
 *  from the component once the AncestorEvent is generated. A second constructor
 *  allows you to specify a boolean value of false to prevent the
 *  AncestorListener from being removed when the event is generated. This will
 *  allow you to reuse the listener each time the event is generated.
 */
class RequestFocusListener implements AncestorListener
{
    private boolean removeListener;

    /*
     *  Convenience constructor. The listener is only used once and then it is
     *  removed from the component.
     */
    public RequestFocusListener()
    {
        this(true);
    }

    /*
     *  Constructor that controls whether this listen can be used once or
     *  multiple times.
     *
     *  @param removeListener when true this listener is only invoked once
     *                        otherwise it can be invoked multiple times.
     */
    public RequestFocusListener(boolean removeListener)
    {
        this.removeListener = removeListener;
    }

    @Override
    public void ancestorAdded(AncestorEvent e)
    {
        JComponent component = e.getComponent();
        component.requestFocusInWindow();

        if (removeListener)
            component.removeAncestorListener( this );
    }

    @Override
    public void ancestorMoved(AncestorEvent e) {}

    @Override
    public void ancestorRemoved(AncestorEvent e) {}
}
于 2012-05-27T10:57:11.870 に答える
5
textField.setFocusable(false);
textField.setFocusable(true);

textField にフォーカスがある場合に限り、TAB 順で次のコンポーネントが自動的にフォーカスされます。効果は TAB を押すのと同じです。

(フォーカス可能なコンポーネントが1つだけのGUIではテストされていません:))

于 2014-06-03T13:38:53.283 に答える
4

requestFocusInWindow()最初のコンポーネントではなく、他のコンポーネントにフォーカスを設定するために使用しますJTextfield

しかし、ネイティブのフォーカス システムを変更しないことをお勧めsetText(String s)します。JTextFieldinitComponents()constructor

さらにオプションで読む:フォーカス サブシステムの使用方法

于 2012-05-27T10:09:22.793 に答える
4

ユーザーが最初に行う必要があると仮定すると、ユーザー名フィールドにキーボードフォーカスを与えることは正しい動作だと思います。フォーカスをクリアする代わりに、ユーザーが何かを入力した後にのみクリアしないのはなぜですか?:

import java.awt.*;
import javax.swing.*;
import javax.swing.text.Document;

public class PlaceholderTextField extends JTextField {

    public static void main(final String[] args) {
        final PlaceholderTextField tf = new PlaceholderTextField("");
        tf.setColumns(20);
        tf.setPlaceholder("All your base are belong to us!");
        final Font f = tf.getFont();
        tf.setFont(new Font(f.getName(), f.getStyle(), 30));
        JOptionPane.showMessageDialog(null, tf);
    }

    private String placeholder;

    public PlaceholderTextField() {
    }

    public PlaceholderTextField(
        final Document pDoc,
        final String pText,
        final int pColumns)
    {
        super(pDoc, pText, pColumns);
    }

    public PlaceholderTextField(final int pColumns) {
        super(pColumns);
    }

    public PlaceholderTextField(final String pText) {
        super(pText);
    }

    public PlaceholderTextField(final String pText, final int pColumns) {
        super(pText, pColumns);
    }

    public String getPlaceholder() {
        return placeholder;
    }

    @Override
    protected void paintComponent(final Graphics pG) {
        super.paintComponent(pG);

        if (placeholder.length() == 0 || getText().length() > 0) {
            return;
        }

        final Graphics2D g = (Graphics2D) pG;
        g.setRenderingHint(
            RenderingHints.KEY_ANTIALIASING,
            RenderingHints.VALUE_ANTIALIAS_ON);
        g.setColor(getDisabledTextColor());
        g.drawString(placeholder, getInsets().left, pG.getFontMetrics()
            .getMaxAscent() + getInsets().top);
    }

    public void setPlaceholder(final String s) {
        placeholder = s;
    }

}

本当にフォーカスを外したいだけなら、いくつかのオプションがあります:

  • component.setFocusable(false);
  • KeyboardFocusManager.getCurrentKeyboardFocusManager().focusNextComponent();
  • KeyboardFocusManager.getCurrentKeyboardFocusManager().clearGlobalFocusOwner();
于 2013-05-01T20:13:21.857 に答える