当我使用Java的SpringLayout管理器时,我有一个非常奇怪的问题。我试图得到一个工具栏出现在我的程序。它在我的程序的早期工作,现在它不工作了。基本上,如果我从JPanel的实例化中删除布局参数,我在JPanel中添加的元素就会显示出来,尽管没有我的定制。如果在实例化中使用该参数,则根本不会出现工具栏。我不知道我惹了什么事,也不知道我做错了什么。JPanel将进入一个中央JFrame,我已经将其从一个BorderLayout更改为另一个SpringLayout,它似乎没有影响这个问题。
public class purchaserApp
{
static JFrame mainWindow; //Main window
static JFrame addView = new JFrame ("Add An Item..."); //Add item window
static JFrame aboutView = new JFrame ("About Purchaser"); //About window
static JFrame helpView = new JFrame ("Purchaser Help"); //Help window
static JPanel toolBar, contentArea, previewPane; //Panels for GUI
static JRootPane root;
static JToolBar toolBar2;
//SpringLayout mainLayout;
JTable table;
public purchaserApp()
{
makemainWindow();
makeMenu();
makeToolbar();
// makeMainContentView();
mainWindow.setVisible(true);
}
public void makeToolbar()
{
SpringLayout tbLayout = new SpringLayout();
toolBar = new JPanel(tbLayout); //this is the offending line of code, if I remove "tbLayout" the buttons show up in the GUI but obviously without the customizations I made below...
JButton toolBarButtons[];
String buttonNames[] = {"Add", "Edit", "Delete"};
//Instantiate buttons for toolbar
toolBarButtons = new JButton[3];
//Resize
Dimension d = new Dimension (40,55);
//Add/modify/whatever
for (i = 0; i < 3; i++)
{
toolBarButtons[i] = new JButton(buttonNames[i]);
toolBarButtons[i].setPreferredSize(d);
tbLayout.putConstraint(SpringLayout.NORTH, toolBarButtons[i], 5, SpringLayout.NORTH, toolBar);
}
//Adjust constraints
tbLayout.putConstraint(SpringLayout.WEST, toolBarButtons[0], 5, SpringLayout.WEST, toolBar);
tbLayout.putConstraint(SpringLayout.WEST, toolBarButtons[1], 5, SpringLayout.EAST, toolBarButtons[0]);
tbLayout.putConstraint(SpringLayout.EAST, toolBarButtons[2], -5, SpringLayout.EAST, toolBar); //due to x-axis, we must go negative to get inside the frame
for (i = 0; i < 3; i++)
toolBar.add(toolBarButtons[i]);
mainWindow.add(toolBar,BorderLayout.NORTH); //Lies! Does not add
}
我在这里包含了类和违规的方法。任何帮助都会非常感激,因为我相信我不是第一个有这个问题的人。如果这是一个相对简单的修复,我也道歉,我没有看到它。我对Java gui(和一般的Java)还是比较陌生的,所以请原谅我。
为什么要使用面板创建工具栏?JToolBar使用自己的自定义布局有什么问题?
即使你创建了一个自定义工具栏面板,我也不会使用SpringLayout,因为它太复杂了。只需使用FlowLayout或水平BoxLayout。
阅读Swing布局管理器教程,了解每个布局管理器的工作示例。
正如在这个相关问题中所指出的,约束规范的顺序可能很重要,特别是如果结果布局是过度约束的。根据版本的不同,您可能必须在WEST/NORTH
约束之前指定EAST/SOUTH
约束,如下所述。