用Java创建一个新的GUI(1.8)Swing,我正在寻找一种方法来覆盖我所有组件的resize行为。
让我用一些编辑后的照片向您解释:
这是我的全屏GUI,有3个面板和JToolBar
。绿色的需要固定大小,其他的可调整大小。
目前,我只有2个小GridLayout
来组织它们(一个垂直,一个水平绿色和青色面板)。
例如,如果我从右侧缩小框架尺寸,我希望我的蓝色和青色面板根据新的框架尺寸调整大小。但绿色面板必须固定。 (这不是我认为最困难的部分。)
这对我来说是最困难的部分。一旦青色(或蓝色)面板达到最小尺寸,我希望他" 推送"左边的绿色面板,即使它从框架上消失。
当然,向右拉框架会使绿色面板再次出现。
我怎么能这样做?
我想过使用JSplitPane
或特定的侦听器来手动决定调整大小行为,但我需要一些建议。
很抱歉,如果现有帖子可以回复此问题,我找不到任何解答此问题的答案。
提前致谢!
如果您想了解更多示例,请查看" Evernote"以相同方式行事的软件
答案 0 :(得分:7)
设置Green
面板的最大/最小/首选大小可以使该面板在第一个条件下保持相同的大小。要检查调整大小,您可以在其他ComponentListener
之一上使用JPanel
- 如果大小低于特定宽度,则更改{{1}的最大/最小/首选大小面板。
下面是一个黑客攻击的示例 - 当Green
为< Green
时,它会调整Blue
面板的大小。 600,调整大小是加权调整大小(总宽度的30%)。要获得真正的L& F并且您需要,您可能需要使用布局/尺寸。
import java.awt.BorderLayout;
import java.awt.Color;
import java.awt.Dimension;
import java.awt.GridBagConstraints;
import java.awt.GridBagLayout;
import java.awt.GridLayout;
import java.awt.Insets;
import java.awt.Rectangle;
import java.awt.event.ComponentAdapter;
import java.awt.event.ComponentEvent;
import java.awt.event.ComponentListener;
import javax.swing.Box;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.JToolBar;
import javax.swing.SwingUtilities;
public class GridTest extends JPanel{
private boolean changeAllowed = false;
//keep reference to cyan for the height dimension
final JPanel cyan = new JPanel();
public GridTest(){
cyan.setPreferredSize(new Dimension(600, 300));//provide sizing hint
}
private Dimension getCustomDimensions(){
if ( changeAllowed ){
return new Dimension((int)(super.getParent().getBounds().width * 0.3), cyan.getBounds().height);
}else{
return new Dimension(200, cyan.getBounds().height);
}
}
@Override
public Dimension getMaximumSize(){
return getCustomDimensions();
}
@Override
public Dimension getMinimumSize(){
return getCustomDimensions();
}
@Override
public Dimension getPreferredSize(){
return getCustomDimensions();
}
public static void main(String[] args) throws Exception{
SwingUtilities.invokeAndWait(new Runnable(){
@Override
public void run() {
final int MINIMUM = 600;
JFrame frame = new JFrame();
frame.add(new JToolBar(), BorderLayout.NORTH);
final JPanel blue = new JPanel();
final GridTest green = new GridTest();
green.setBackground(Color.green);
green.setOpaque(true);
green.cyan.setBackground(Color.cyan);
green.cyan.setOpaque(true);
blue.setOpaque(true);
blue.setBackground(Color.blue);
blue.setPreferredSize(new Dimension(900, 300));//hint at size
blue.setMinimumSize(new Dimension(100, 200));//hint at size
//Nest Box Layouts
Box top = Box.createHorizontalBox();
top.add(blue);
Box bottom = Box.createHorizontalBox();
bottom.add(green);
bottom.add(green.cyan);
Box vert = Box.createVerticalBox();
vert.add(top);
vert.add(bottom);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.add(vert);
//listen for resizes
blue.addComponentListener(new ComponentAdapter(){
@Override
public void componentResized(ComponentEvent e) {
if ( blue.getBounds().width < MINIMUM ){//set flag
green.changeAllowed = true;
}else{
green.changeAllowed = false;
}
}
});
frame.pack();
frame.setSize(800, 600);
frame.setVisible(true);
}
});
}
}
答案 1 :(得分:3)
我就是这样做的,我不确定这是正确的方法:
首先将布局设置为null。
接下来为您的框架创建一个组件调整大小的事件:
addComponentListener(new ComponentAdapter(){
public void componentResized(ComponentEvent e){
}
});
在此处,您可以在调整组件大小时手动更改组件。我已经为我的一些程序做了这个,以保持框架左侧和右侧的滚动窗格始终具有相同的宽度,并在调整大小时上下调整其他所有大小。
答案 2 :(得分:3)
使用GridBagLayout应该很容易,只要为绿色和青色组件设置适当的最小尺寸:
setLayout(new GridBagLayout());
green.setMnimumSize(new Dimension(0, 0));
cyan.setMinimumSize(new Dimension(100, 100)); // whatever fits
add(blue, new GridBagConstraints(0, 0, 2, 1,
1.0, 0.0,
GridBagConstraints.WEST, GridBagConstraints.HORIZONTAL,
new Insets(0, 0, 0, 0), 0, 0);
add(green, new GridBagConstraints(0, 1, 1, 1,
0.0, 0.0,
GridBagConstraints.WEST, GridBagConstraints.NONE,
new Insets(0, 0, 0, 0), 0, 0);
add(cyan, new GridBagConstraints(1, 1, 1, 1,
1.0, 0.0,
GridBagConstraints.WEST, GridBagConstraints.HORIZONTAL,
new Insets(0, 0, 0, 0), 0, 0);
通过为青色和蓝色组件指定权重x以及设置resize = HORIZONTAL,它们会随容器调整大小。
答案 3 :(得分:2)
您可以使用BoxLayout
包含绿色和青色面板。 BoxLayout
尊重组件的最小和最大大小。因此,对于绿色面板,您设置的最大尺寸等于首选尺寸,对于青色面板,您将最小尺寸设置为等于首选尺寸:
import java.awt.*;
import java.util.*;
import javax.swing.*;
public class SSCCE extends JPanel
{
public SSCCE()
{
JPanel blue = new JPanel();
blue.setBackground( Color.BLUE );
blue.setPreferredSize( new Dimension(500, 100) );
Box box = Box.createHorizontalBox();
JPanel green = new JPanel();
green.setBackground( Color.GREEN );
green.setPreferredSize( new Dimension(200, 100) );
green.setMaximumSize( green.getPreferredSize() );
box.add( green );
JPanel cyan = new JPanel();
cyan.setBackground( Color.CYAN );
cyan.setPreferredSize( new Dimension(300, 100) );
cyan.setMinimumSize( cyan.getPreferredSize() );
box.add( cyan );
setLayout( new BorderLayout() );
add(blue, BorderLayout.NORTH);
add(box, BorderLayout.CENTER);
}
private static void createAndShowGUI()
{
JFrame frame = new JFrame("SSCCE");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.add(new SSCCE());
frame.setLocationByPlatform( true );
frame.pack();
frame.setVisible( true );
}
public static void main(String[] args)
{
EventQueue.invokeLater(new Runnable()
{
public void run()
{
createAndShowGUI();
}
});
}
}
当然,正确的解决方案是分别覆盖每个面板的getMaximumSize()
和getMinimumSize()
方法,只返回面板的首选大小。
答案 4 :(得分:0)
重要的顺序是:
frame.revalidate();
frame.pack();
frame.repaint();
在每一系列更改后使用此序列,您已完成代码并希望在屏幕上看到结果。
我喜欢 java.awt.GridBagLayout 与 java.awt.GridBagConstraints 结合使用,我在从内容窗格启动的所有容器上使用此布局。< / p>
如果将容器添加到其他容器中,请在每个容器上使用布局,否则计算会因层次结构中缺少布局而失败。