如何编辑JTextField?

时间:2015-07-22 18:09:34

标签: java swing

我想写一个简单的Swing应用程序,底部有一个按钮和一个文本字段。我正在使用JTextField,但它无法点击。我在网上搜索了SO,但我找不到解决方案。在问题How to Set Focus on JTextField?中,我发现了以下内容:

addWindowListener( new WindowAdapter() {
        public void windowOpened( WindowEvent e ){
            entry.requestFocus();
        }
    });

但这没有帮助。在另一个问题(How do you set a focus on Textfield in Swing?)中,我找到Component.requestFocus(),但这也不起作用。我也试过

    entry.setFocusable(true);
    entry.setEditable(true);
    entry.setEnabled(true);

没有效果。我的代码:

import java.awt.BorderLayout;
import java.awt.Dimension;
import java.awt.FlowLayout;

import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.JTextField;
import javax.swing.SwingUtilities;

public class StackSample extends JFrame {

    public StackSample() {
        initUI();
        pack();
        setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    }

    private void initUI() {
        JPanel panel = new JPanel(new BorderLayout());
        add(panel, BorderLayout.CENTER);
        JPanel bottomPanel = new JPanel(new FlowLayout());
        panel.add(bottomPanel, BorderLayout.SOUTH);
        JButton buttonDraw = new JButton("Draw");
        bottomPanel.add(buttonDraw);
        JTextField entry = new JTextField();
        bottomPanel.add(entry);
        setPreferredSize(new Dimension(250, 150));
        setLocationRelativeTo(null);
    }

    private static final long serialVersionUID = 8359448221778584189L;

    public static void main(String[] args) {
        SwingUtilities.invokeLater(new Runnable() {
            public void run() {
                MyApp app = new MyApp();
                app.setVisible(true);
            }
        });
    }
}

2 个答案:

答案 0 :(得分:1)

您的JTextField是可点击的。唯一的问题是它太小了。

这是因为您正在使用FlowLayout,这将使组件尽可能小。

一种解决方案是简单地切换到允许组件尽可能多地填充空间的布局,例如BoxLayout:

{{1}}

答案 1 :(得分:1)

您尚未指定JTextField的大小,因此默认为零字符宽。尝试使用指定列数的构造函数。

另外,什么是MyApp?我看不到任何证据表明您的StackSample曾被创建或使用过。