组件不会在applet中调整大小

时间:2012-12-01 22:55:55

标签: java swing applet resize gridbaglayout

我的目标是根据我的GridBagConstraints调整组件大小,但出于某种原因,当我的applet运行时,组件会出现,但不会像我预期的那样填充整个applet。这是我的代码:

ServerPanel:

public class ServerPanel extends JPanel{
    public ServerPanel(){
    setLayout(new GridBagLayout()); //use gridbag layout
    GridBagConstraints gbc = new GridBagConstraints();

    JButton reverse = new JButton("Reverse text");
    JButton send = new JButton("Send text");
    JButton clear = new JButton("Clear text");
    JTextField text = new JTextField("Test");
    JScrollPane scrollPane = new JScrollPane(text, ScrollPaneConstants.VERTICAL_SCROLLBAR_ALWAYS, ScrollPaneConstants.HORIZONTAL_SCROLLBAR_AS_NEEDED);

    //Reverse button
    gbc.gridx = 0;
    gbc.gridy = 0;
    gbc.fill = gbc.HORIZONTAL;
    add(reverse, gbc);

    //send button
    gbc.gridy = 1;
    add(send, gbc);

    //clear button
    gbc.gridy = 2;
    add(clear,gbc);

    //text field
    gbc.gridy = 3;
    gbc.ipadx = 20;
    gbc.ipady = 20;
    gbc.fill = gbc.BOTH;
    add(scrollPane, gbc);
    }

}

来自ServerApplet的相关代码,它扩展了JApplet:

public void init(){
        //dim = getSize();
        //create the GUI in the EDT
        SwingUtilities.invokeLater(new Runnable(){
        @Override
        public void run(){
            //System.out.println(dim);
            setLayout(new BorderLayout());
            add(new ServerPanel(), BorderLayout.CENTER);

        }
    });
}

会发生正确的组件创建,并且面板在applet中居中,但它不会扩展以填充整个applet。任何帮助表示赞赏。谢谢!

1 个答案:

答案 0 :(得分:3)

当我看到这个时:

  

但出于某种原因,当我的applet运行时,组件会出现,但不会像我预期的那样填满整个applet ....

与GridBagLayout一起使用,我看看是否在GridBagConstraints上设置了weightx和weighty字段,因为它们的默认值为0的原因是组件全部聚集在中心。

解决方案:在需要的地方和时间设置这些字段。如果一个组件应该在x方向上扩展,那么给它一个+ weightx,也许是1.0,同样重量。