【问题标题】:Is it possible to change the height of each grid in a GridLayout?是否可以更改 GridLayout 中每个网格的高度?
【发布时间】:2017-09-09 08:04:37
【问题描述】:

我正在尝试创建一个简单的菜单界面,其中包含 4 行各种按钮和标签,在每个网格内使用 GridLayoutFlowLayout 来组织元素。然而,应该只占用 1 行的按钮和标签的空间占用了大量空间。

这是我的界面最小化的样子:

这是最大化的样子:

我希望设置标签面板/网格的最大尺寸,以便只占用少量空间。

我正在尝试使所有元素可见,而不会隐藏任何内容,并且窗口尺寸尽可能小,如下所示:

这是我的代码:

public class Window extends JFrame{
public Window() {
    super("TastyThai Menu Ordering");
}

public static void main(String[] args) {
    Window w = new Window();
     w.setSize(500, 500);
     w.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

     JLabel title = new JLabel("TastyThai Menu Order", SwingConstants.CENTER);
     title.setFont(title.getFont().deriveFont(32f));

     //generate page title
     Container titlePanel = new JPanel(); // used as a container
     titlePanel.setBackground(Color.WHITE);
     FlowLayout flow = new FlowLayout(); // Create a layout manager
     titlePanel.setLayout(flow);// assign flow layout to panel
     titlePanel.add(title); // add label to panel
     w.getContentPane().add(BorderLayout.NORTH,titlePanel);

     //generate row containers
     Container r1 = new JPanel(new FlowLayout());
     Container r2 = new JPanel(new FlowLayout());
     Container r3 = new JPanel(new FlowLayout());
     Container r4 = new JPanel(new FlowLayout());

     //generate mains radio buttons
     Container mains = new JPanel(new GridLayout(7, 0));
     mains.setBackground(Color.RED);
     JLabel mainsHeader = new JLabel("Mains");
     mains.add(mainsHeader);
     String[] mainsChoices = {"Vegetarian", "Chicken", "Beef", "Pork", "Duck", "Seafood Mix"};
     JRadioButton[] mainsRadioButton = new JRadioButton[6];
     ButtonGroup mainsButtons = new ButtonGroup();
     for(int i = 0; i < mainsChoices.length; i++) {
        mainsRadioButton[i] = new JRadioButton(mainsChoices[i]);
        mains.add(mainsRadioButton[i]);
        mainsButtons.add(mainsRadioButton[i]); 
     }

     //generate noodles radio buttons
     Container noodles = new JPanel(new GridLayout(7, 0));
     noodles.setBackground(Color.GREEN);
     JLabel noodlesHeader = new JLabel("Noodles");
     noodlesHeader.setFont(noodlesHeader.getFont().deriveFont(24f));
     noodles.add(noodlesHeader);
     String[] noodlesChoices = {"Pad Thai", "Pad Siew", "Ba Mee"};
     JRadioButton[] noodlesRadioButton = new JRadioButton[3];
     ButtonGroup noodlesButtons = new ButtonGroup();
     for(int i = 0; i < noodlesChoices.length; i++) {
         noodlesRadioButton[i] = new JRadioButton(noodlesChoices[i]);
         noodles.add(noodlesRadioButton[i]);
         noodlesButtons.add(noodlesRadioButton[i]); 
     }

     //generate sauces radio buttons
     Container sauces = new JPanel(new GridLayout(7, 0));
     sauces.setBackground(Color.BLUE);
     JLabel saucesHeader = new JLabel("Sauce");
     saucesHeader.setFont(saucesHeader.getFont().deriveFont(24f));
     sauces.add(saucesHeader);
     String[] saucesChoices = {"Soy Sauce", "Tamarind Sauce"};
     JRadioButton[] saucesRadioButton = new JRadioButton[2];
     ButtonGroup saucesButtons = new ButtonGroup();
     for(int i = 0; i < saucesChoices.length; i++) {
         saucesRadioButton[i] = new JRadioButton(saucesChoices[i]);
         sauces.add(saucesRadioButton[i]);
         saucesButtons.add(saucesRadioButton[i]); 
     }

     //generate extras check boxes
     Container extras = new JPanel(new GridLayout(7, 0));
     extras.setBackground(Color.YELLOW);
     JLabel extrasHeader = new JLabel("Extra");
     extrasHeader.setFont(extrasHeader.getFont().deriveFont(24f));
     extras.add(extrasHeader);
     String[] extrasChoices = {"Mushroom", "Egg", "Broccoli", "Beansrpout", "Tofu"};
     JCheckBox[] extrasBoxes = new JCheckBox[5];
     for(int i = 0; i < extrasChoices.length; i++) {
         extrasBoxes[i] = new JCheckBox(extrasChoices[i]);
         extras.add(extrasBoxes[i]);
     } 

     JLabel selectionPrice = new JLabel("Selection Price: $ ");
     JLabel selectionPriceVal = new JLabel("_______________");
     JButton addToOrder = new JButton("Add to Order");

     JLabel totalPrice = new JLabel("Total Price: $ ");
     JLabel totalPriceVal = new JLabel("_______________");
     JButton clearOrder = new JButton("Clear Order");

     JRadioButton pickUp = new JRadioButton("Pick Up");
     JRadioButton delivery = new JRadioButton("Delivery");
     ButtonGroup pickupDelivery = new ButtonGroup();
     pickupDelivery.add(pickUp);
     pickupDelivery.add(delivery);
     JButton completeOrder = new JButton("Complete Order");

     Container menuSelection = new JPanel(new GridLayout(4,0));
     menuSelection.add(r1);
     r1.add(mains);
     r1.add(noodles);
     r1.add(sauces);
     r1.add(extras);
     menuSelection.add(r2);
     r2.add(selectionPrice);
     r2.add(selectionPriceVal);
     r2.add(addToOrder);
     menuSelection.add(r3);
     r3.add(totalPrice);
     r3.add(totalPriceVal);
     r3.add(clearOrder);
     menuSelection.add(r4);
     r4.add(pickUp);
     r4.add(delivery);
     r4.add(completeOrder);

     w.getContentPane().add(BorderLayout.CENTER, menuSelection);

     w.setVisible(true);
}   
}

【问题讨论】:

  • 它与组件的最大尺寸无关。 GridLayout javadoc 说: GridLayout 类是一个布局管理器,它在矩形网格中布置容器的组件。容器被分成大小相等的矩形,每个矩形中放置一个组件。因此,如果不希望这样做,请不要使用该布局,并选择一种允许做您想做的事情(不清楚)。
  • @JBNizet 我正在尝试使所有元素可见,而不会隐藏任何东西,并且窗口尺寸尽可能小,如下所示:imgur.com/4zBhQaf 但每行有 1 行用于选择价格并添加到订单按钮然后在新行总价和清除订单按钮和新行取货/交货单选按钮和完成订单按钮。我能够通过流布局实现这一目标,但我不知道如何在流布局中创建新行。所以我虽然我会将流布局嵌套在网格布局中
  • 您可以使用 BoxLayout 来堆叠 GUI 的 4 个部分。

标签: java swing layout-manager grid-layout flowlayout


【解决方案1】:

GridLayout 不支持。所有矩形的大小都相同。

看看 GridBagLayout,它支持动态调整大小等等。

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2023-03-15
    • 2013-08-17
    • 1970-01-01
    • 2021-05-23
    • 2020-04-11
    • 1970-01-01
    相关资源
    最近更新 更多