我一直致力于一个应该模拟赌博游戏的小项目。不幸的是,我在使用BoxLayout
时遇到了一些奇怪的问题。据我所知,LayoutManager
通常会尊重任何组件的首选大小。但是,在下面的代码中,BoxLayout
没有。
到目前为止,这是我的代码:
import java.awt.*;
import javax.swing.*;
public class Main
{
public static void main(String[] args)
{
JFrame.setDefaultLookAndFeelDecorated(true);
JFrame frame = new JFrame("Suit-Up");
frame.setContentPane(makeGUI());
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setSize(900,450);
frame.setLocationRelativeTo(null);
frame.setResizable(false);
frame.setVisible(true);
}
public static JPanel makeGUI()
{
JPanel main = new JPanel();
main.setMinimumSize(new Dimension(900,450));
main.setBackground(Color.red);
JPanel infoPanel = new JPanel();
infoPanel.setLayout(new BoxLayout(infoPanel, BoxLayout.LINE_AXIS));
infoPanel.setPreferredSize(new Dimension(900,60));
infoPanel.setBackground(Color.green);
main.add(infoPanel);
JPanel infoText = new JPanel();
infoText.setLayout(new BoxLayout(infoText, BoxLayout.PAGE_AXIS));
infoPanel.add(infoText);
JPanel moneyText = new JPanel();
moneyText.setLayout(new BoxLayout(moneyText, BoxLayout.LINE_AXIS));
infoText.add(moneyText);
JPanel lastGameText = new JPanel();
lastGameText.setLayout(new BoxLayout(lastGameText, BoxLayout.LINE_AXIS));
infoText.add(lastGameText);
JButton playAgain = new JButton("Play Again ($20)");
playAgain.setPreferredSize(new Dimension(200,60));
infoPanel.add(playAgain);
JButton finish = new JButton("End Session");
finish.setPreferredSize(new Dimension(200,60));
infoPanel.add(finish);
JPanel cardPanel = new JPanel();
cardPanel.setLayout(new BoxLayout(cardPanel, BoxLayout.LINE_AXIS));
main.add(cardPanel);
return main;
}
}
尽管为JButton
指定了首选尺寸,但它们不会改变尺寸。我也尝试了setMaximumSize()
和setMinimumSize()
,但都没有任何效果。
我是否忽略了明显的事情,或者这是BoxLayout
的限制?
答案 0 :(得分:2)
“据我所知,LayoutManagers通常会尊重任何组件的首选大小” - 实际上并非如此。首选/最小/最大大小只是布局管理器可用于确定如何最好地布局内容的“提示”。如果他们愿意,布局管理员可以简单地忽略它们。
来自JavaDocs
BoxLayout 尝试以最佳宽度排列组件 (用于水平布局)或高度(用于垂直布局)。为一个 水平布局,如果不是所有组件都是相同的高度, BoxLayout尝试将所有组件设置为最高 零件。如果某个特定组件不可能,那么 BoxLayout根据情况垂直对齐该组件 组件的Y对齐。默认情况下,组件的Y对齐方式为 0.5,这意味着组件的垂直中心应具有与其他组件的垂直中心相同的Y坐标 0.5 Y对齐。
同样,对于垂直布局,BoxLayout会尝试全部制作 列中的组件与最宽的组件一样宽。如果说 失败,它根据X对齐水平对齐它们。 对于PAGE_AXIS布局,水平对齐基于 组件的前沿。换句话说,X的对齐值 如果容器的ComponentOrientation从左到右,则表示组件的左边缘,它表示组件的右边缘 否则。