在带有GridBagLayout的JPanel中,我创建了一个与JscrollPane组件绑定的JTextPane组件列表。不幸的是,组件的大小似乎是固定的:当我减小JFrame大小时,我想强制组件动态地使它们的sizeto适合JFrame。 例如,当主窗口大小减少到20像素时,我希望竞争对手将其大小更改为20像素。
这是我的代码:
import java.awt.*;
import javax.swing.*;
public class ScrollbarTest {
private JFrame frame;
private JPanel panel;
private JScrollPane [] scrollpane = new JScrollPane[4];
private JTextArea [] textPane = new JTextArea[4];
private JScrollPane scrollbar;
ScrollbarTest() {
//initialize jtextarea
for(int i=0;i<textPane.length;i++) {
textPane[i]=new JTextArea();
textPane[i].setText("xxxx xxxx xxxx xxxx xxxx xxxx xxxx | ");
scrollpane[i] = new JScrollPane(textPane[i]);
scrollpane[i].setMinimumSize(new Dimension(100,100));
}
panel = new JPanel();
frame = new JFrame();
createList(panel);
scrollbar = new JScrollPane(panel);
frame.add(scrollbar);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setVisible(true);
frame.setSize(new Dimension(400,400));
} //constructor
//method to easily add components to GridBags
static void addComponent(JPanel panel,
GridBagLayout gbl,
Component c,
int x, int y,
int width, int height,
double weightx, double weighty) {
GridBagConstraints gbc = new GridBagConstraints();
gbc.fill = GridBagConstraints.HORIZONTAL;
gbc.gridx = x; gbc.gridy = y;
gbc.gridwidth = width; gbc.gridheight = height;
gbc.weightx = weightx; gbc.weighty = weighty;
gbl.setConstraints( c, gbc );
panel.add( c );
}//addComponent
public void createList(JPanel panel) {
//setting layout: "GridBagLayout"
GridBagLayout gbl = new GridBagLayout();
panel.setLayout(gbl);
//put created components to the gridbags of gridbaglayout
// x y w h wx wy
addComponent( panel, gbl, scrollpane[0] , 0, 1, 1, 1, 1 ,1 );
addComponent( panel, gbl, scrollpane[1] , 0, 2, 1, 1, 1 ,1 );
addComponent( panel, gbl, scrollpane[2] , 1, 1, 1, 1, 1 ,1 );
addComponent( panel, gbl, scrollpane[3] , 1, 2, 1, 1, 1 ,1 );
} //createList
public static void main (String[] args) {
new ScrollbarTest();
} //main
} //end of class
如何动态调整组件的大小?
非常感谢!
答案 0 :(得分:1)
使用GridBagLayout
时,您必须始终关注子组件preferredSize
。添加类似
textPane[i].setPreferredSize(new Dimension(10, 15));
到构造函数中的for循环。
此外,您将AWT与Swing混合使用 - 使用更轻量级JComponent
代替Component
。
答案 1 :(得分:0)
将所有组件添加到JFrame后,您应该运行命令:
frame.pack();
我通常不会遇到这类问题,因为我通常使用NetBeans接口来生成Aplets。在NetBeans中,您只需使用图形界面构建组件,它就会自动生成所有代码。 试试看! : - )