我正在使用JPanel(里面有几个标签)在图表上添加动态信息.此面板是动态创建的,在我使用它绘制之前它是不可见的.
为此,我使用的是BufferedImage,我遵循与此other question中描述的大致相同的步骤.只要我指定所有大小(面板及其组件),它就可以正常工作.
最佳答案
Suraj和willcodejavaforfood让我走上了良好的轨道.
原文链接:https://www.f2er.com/java/437628.html检查pack()方法实际完成的内容,我发现这主要是将当前大小设置为getPreferredSize()返回的大小.
从此,我设法做出这样的解决方案:
// Creating the panel
JPanel lPanel = new JPanel();
//lPanel.setSize(1000,1000); //default size,not needed anymore
lPanel.setLayout(new BoxLayout(lPanel,BoxLayout.PAGE_AXIS));
//Adding the content
lPanel.add(new JLabel("Blah"));
// etc...
//Adjust the panel to its preferred size
lPanel.setSize(lPanel.getPreferredSize());
//Call the layout method
//(this will adjust the content components to their correct size and position)
lPanel.doLayout();
这种方法可以正常工作,并将面板及其内容调整到正确的大小(并以简单的方式回答我的问题:“如何找到首选大小?getPreferredSize()”).
但是,它需要将初始大小设置为足够大的大小,以便内容适合,或者不会将它们放在布局上.这有点可惜,并不是真的“干净”,但我现在找不到避免这种情况的方法.
编辑:实际上,默认大小不是必需的,因为getPreferredSize()返回正确的值,甚至在调用doLayout()之前.因此,在调用布局方法之前,可以将面板设置为适当的大小.