Java Swing。 ScrolPane中的TextField不完全可见

时间:2012-08-28 09:21:32

标签: java swing jscrollpane jtextfield jtextarea

我有结构,如图所示。

对于这两个面板,使用GridBagLayout。 问题是滚动窗格内的文本字段不完全可见。 父面板仅在按钮变为可见时拉伸,但当滚动条出现时,它只与文本字段重叠。 有没有一个简单的解决方案来解决这个问题(不想处理设置自定义/首选/最小高度)?

小组结构:

enter image description here

问题:

enter image description here

好的,这是一个SSCCE

public class Main {
JFrame frame;
private JPanel mainPanel;
private JButton button1;
private JButton button2;
private JTextField someTextTextField;


public static void main(String[] args) {
    Main main = new Main();
    main.show();
}

private void show() {
    frame = new JFrame("Frame");
    frame.setContentPane(mainPanel);
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    frame.pack();

    frame.setVisible(true);
}


{

    $$$setupUI$$$();
}

/**
 * Method generated by IntelliJ IDEA GUI Designer
 * >>> IMPORTANT!! <<<
 * DO NOT edit this method OR call it in your code!
 *
 * @noinspection ALL
 */
private void $$$setupUI$$$() {
    mainPanel = new JPanel();
    mainPanel.setLayout(new GridBagLayout());
    mainPanel.setPreferredSize(new Dimension(209, 30));
    final JPanel panel1 = new JPanel();
    panel1.setLayout(new GridBagLayout());
    GridBagConstraints gbc;
    gbc = new GridBagConstraints();
    gbc.gridx = 1;
    gbc.gridy = 0;
    gbc.weightx = 0.5;
    gbc.weighty = 1.0;
    gbc.fill = GridBagConstraints.BOTH;
    mainPanel.add(panel1, gbc);
    button1 = new JButton();
    button1.setText("Button");
    gbc = new GridBagConstraints();
    gbc.gridx = 0;
    gbc.gridy = 0;
    gbc.fill = GridBagConstraints.HORIZONTAL;
    panel1.add(button1, gbc);
    button2 = new JButton();
    button2.setText("Button");
    gbc = new GridBagConstraints();
    gbc.gridx = 1;
    gbc.gridy = 0;
    gbc.fill = GridBagConstraints.HORIZONTAL;
    panel1.add(button2, gbc);
    final JScrollPane scrollPane1 = new JScrollPane();
    scrollPane1.setAlignmentX(0.0f);
    gbc = new GridBagConstraints();
    gbc.gridx = 0;
    gbc.gridy = 0;
    gbc.weightx = 0.5;
    gbc.weighty = 1.0;
    gbc.fill = GridBagConstraints.BOTH;
    mainPanel.add(scrollPane1, gbc);
    someTextTextField = new JTextField();
    someTextTextField.setText("some text");
    scrollPane1.setViewportView(someTextTextField);
}

/**
 * @noinspection ALL
 */
public JComponent $$$getRootComponent$$$() {
    return mainPanel;
}

}

1 个答案:

答案 0 :(得分:1)

尝试使用JTextArea代替JTextField。如果您不想设置自定义/首选/最小尺寸,则可以使用JTextArea.setRows(int rows)方法。我希望有所帮助。