显然我对 SpringLayout 有一些不明白的地方。我正在尝试创建一个类,即 JPanel 的扩展,它允许我添加组件并让它们垂直显示,宽度相同。
我对 JPanel 的扩展会将其 LayoutManager 设置为使用 SpringLayout,并且每次添加组件时,它都会放入 SpringLayout 约束以将其附加到第一个组件的面板,然后将每个组件附加到前一个组件。
首先,这是一个 Oracle 编写的使用 SpringLayout 的示例,我将其更改为垂直放置组件而不是水平放置:
/*
* Copyright (c) 1995, 2008, Oracle and/or its affiliates. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* - Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
*
* - Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* - Neither the name of Oracle or the names of its
* contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
* IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
* THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
import javax.swing.SpringLayout;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JTextField;
import java.awt.Container;
public class SpringDemo3
{
/**
* Create the GUI and show it. For thread safety, this method should be
* invoked from the event-dispatching thread.
*/
private static void createAndShowGUI()
{
// Create and set up the window.
JFrame frame = new JFrame("SpringDemo3");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
// Set up the content pane.
Container contentPane = frame.getContentPane();
SpringLayout layout = new SpringLayout();
contentPane.setLayout(layout);
// Create and add the components.
JLabel label = new JLabel("Label: ");
JTextField textField = new JTextField("Text field", 15);
contentPane.add(label);
contentPane.add(textField);
// Adjust constraints for the label so it's at (5,5).
layout.putConstraint(SpringLayout.WEST, label, 5, SpringLayout.WEST, contentPane);
layout.putConstraint(SpringLayout.NORTH, label, 5, SpringLayout.NORTH, contentPane);
// Adjust constraints for the text field so it's at
// (<label's right edge> + 5, 5).
// layout.putConstraint(SpringLayout.WEST, textField, 5, SpringLayout.EAST, label);
// layout.putConstraint(SpringLayout.EAST, textField, 5, SpringLayout.EAST, contentPane);
layout.putConstraint(SpringLayout.NORTH, textField, 5, SpringLayout.SOUTH, label);
// Adjust constraints for the content pane: Its right
// edge should be 5 pixels beyond the text field's right
// edge, and its bottom edge should be 5 pixels beyond
// the bottom edge of the tallest component (which we'll
// assume is textField).
layout.putConstraint(SpringLayout.EAST, contentPane, 5, SpringLayout.EAST, textField);
layout.putConstraint(SpringLayout.SOUTH, contentPane, 5, SpringLayout.SOUTH, textField);
// Display the window.
frame.pack();
frame.setVisible(true);
}
public static void main(String[] args)
{
// Schedule a job for the event-dispatching thread:
// creating and showing this application's GUI.
javax.swing.SwingUtilities.invokeLater(new Runnable()
{
public void run()
{
createAndShowGUI();
}
});
}
}
根据我对 SpringLayout 要求的理解,我编写了以下内容:
import java.awt.Component;
import java.awt.LayoutManager;
import java.util.ArrayList;
import javax.swing.JPanel;
import javax.swing.SpringLayout;
import static javax.swing.SpringLayout.NORTH;
import static javax.swing.SpringLayout.EAST;
import static javax.swing.SpringLayout.SOUTH;
import static javax.swing.SpringLayout.WEST;
public class OneWidthPanel extends JPanel
{
private static final long serialVersionUID = 1L;
private int padding = 5;
SpringLayout springLayout = new SpringLayout();
public OneWidthPanel() { super(); setLayout(springLayout); }
public OneWidthPanel(boolean isDoubleBuffered) { super(isDoubleBuffered); }
public OneWidthPanel(LayoutManager layout) { throw new IllegalArgumentException("Cannot set a layout manager on the OneWidthPanel class"); }
public OneWidthPanel(LayoutManager l, boolean isDoubleBuffered) { throw new IllegalArgumentException("Cannot set a layout manager on the OneWidthPanel class"); }
private ArrayList<Component> componentList = new ArrayList<>();
@Override
public Component add(Component comp)
{
super.add(comp);
componentList.add(comp);
int listSize = componentList.size();
String topConstraint;
Component northComponent;
if (listSize == 1)
{
topConstraint = NORTH;
northComponent = this;
}
else
{
topConstraint = SOUTH;
northComponent = componentList.get(listSize - 2);
}
springLayout.putConstraint(topConstraint, northComponent, padding, SpringLayout.NORTH, comp);
springLayout.putConstraint(WEST, this, padding, WEST, comp);
springLayout.putConstraint(EAST, this, padding, EAST, comp);
return comp;
}
public void finishedAdding()
{
Component lastComponent = componentList.get(componentList.size()-1);
springLayout.putConstraint(EAST, this, padding, EAST, lastComponent);
springLayout.putConstraint(SOUTH, this, padding, SOUTH, lastComponent);
}
}
这是一个测试它的小程序:
import java.awt.BorderLayout;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JRadioButton;
import rcutil.layout.OneWidthPanel;
public class OneWidthPanelTester extends JFrame
{
private static final long serialVersionUID = 1L;
public static void main(String[] args)
{
OneWidthPanelTester tester = new OneWidthPanelTester();
tester.go();
}
public void go()
{
OneWidthPanel panel = new OneWidthPanel();
JButton button1 = new JButton("ONE new button");
JButton button2 = new JButton("second b");
JRadioButton rButton = new JRadioButton("choose me");
panel.add(button1);
panel.add(button2);
panel.add(rButton);
panel.finishedAdding();
add(panel, BorderLayout.WEST);
pack();
setVisible(true);
}
}
组件在面板顶部彼此重叠显示。我想设置每个约束,当我添加它时,将每个组件的北端连接到前一个组件的南边缘,将它们按照添加的顺序垂直排列。正如https://docs.oracle.com/javase/tutorial/uiswing/layout/springfinishedAdding()
上的“如何使用 SpringLayout”教程中所述,我有方法可以封装最后一个组件与其容器的连接。 html,并在我复制的演示程序中完成。
我不明白为什么我的组件相互重叠,但(两个)演示组件垂直相邻。我是否能够满足我最初的愿望,即让垂直组件在面板中拉伸成相同的大小?