【问题标题】:GridBagLayout cant get layout rightGridBagLayout 无法正确布局
【发布时间】:2013-06-28 19:16:33
【问题描述】:

我是 GridBagLayout 的新手,但我尝试使用我可以使用的标准约定 find 是在一张网格纸上画出我的想法,然后尝试将网格值转换为 gridbag...

我的目标是制作如下所示的布局:

目前看起来像这样:

知道为什么吗?

如果您想到一个左上角为 0,0 的网格,我正在寻找的确切尺寸 对于

  1. 目标图片面板中的红色:从第 0 列开始,跨越 10 列,高度为 1 行
  2. 对于黑色面板:从第 0 列第 1 行开始,跨越 10 列,高度为 20 行
  3. 对于蓝色面板:从第 0 列第 21 行开始,跨越 10 列,高度为 1
  4. 对于绿色列:从第 10 列第 0 行开始,跨越 16 列,高度为 7
  5. 紫色列:从第 10 列第 7 行开始,跨越 16 列,高度为 16

这是我的源代码:

GBC是一个扩展GridBagConstraints的辅助类,使用的构造函数是

GBC(int startingX,int startingY,int width,int height)

 /*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

import java.awt.Color;
import java.awt.EventQueue;
import java.awt.GridBagLayout;
import java.awt.Rectangle;
import javax.swing.JApplet;
import javax.swing.JLabel;
import javax.swing.JPanel;

public class Demo extends JApplet
{

    JPanel panel1 = new JPanel();
    JPanel panel2 = new JPanel();
    JPanel panel3 = new JPanel();
    JPanel panel4 = new JPanel();
    JPanel panel5 = new JPanel();

    public void init()
    {
        EventQueue.invokeLater(new Runnable()
        {
            public void run()
            {
                initComponents();
            }
        });
    }

    public void initComponents()
    {
        //set the layout of the content pane to gridbag layout
        GridBagLayout gridBag = new GridBagLayout();
        getContentPane().setLayout(gridBag);

        Rectangle rect = getContentPane().getBounds();

        panel1.setBackground(Color.green);
        panel2.setBackground(Color.black);
        panel3.setBackground(Color.red);
        panel4.setBackground(Color.orange);
        panel5.setBackground(Color.yellow);

        add(panel4, new GBC(10, 0, 16, 7).setFill(GBC.BOTH).setWeight(1.0, 1.0));
        add(panel1, new GBC(0, 0, 10, 1).setFill(GBC.BOTH).setWeight(1.0, 1.0));
        add(panel3, new GBC(0, 21, 10, 1).setFill(GBC.BOTH).setWeight(1.0, 1.0));
        add(panel2, new GBC(0, 1, 10, 20).setFill(GBC.BOTH).setWeight(1.0, 1.0));
        add(panel5, new GBC(10, 7, 16, 16).setFill(GBC.BOTH).setWeight(1.0, 1.0));
    }
}

任何帮助将不胜感激(但请解释您的逻辑)

【问题讨论】:

  • GridBagLayout 默认情况下不会使列大小相等。列的大小基于放置在主 JPanel 上的 Swing 组件的内容。您应该首先创建 5 个 JPanel 中每个 JPanel 的内容,然后尝试将它们组合到一个带有 GridBagLayout 的主 JPanel 上。
  • 那是反直觉的 xD,你会认为你想先设计布局。无论如何,谢谢你,我会试一试。
  • @GilbertLeBlanc 添加组件后它看起来仍然完全相同:(知道为什么这些行和列值不起作用吗?
  • 没有SSCCE。最好是可运行的。 sscce.org
  • @nachos : 关于LeftRight 边,它们需要不同的尺寸吗?如果是,则在最后三个 addComp(...) 调用中对 weightx 值进行简单更改,对于 leftPanel (smaller value)greenPanelmagentaPanel(这两个 JPanel 的值相同但更高)。

标签: java swing layout-manager gridbaglayout


【解决方案1】:

您可以使用GridBagLayout 轻松完成此操作。

考虑contentPaneGridBagLayout 作为其布局,您现在可以将JPanel 分为三个部分。一个左侧JPanel(带有GridBagLayout,其中将包含REDBLACKBLUEJPanels),右侧由两个JPanels组成,即GREENMAGENTA.

 ------------------------
|  left   | green JPanel |
| JPanel  |______________|
|  with   |magenta Jpanel|
|3 JPanel |              |
|________________________|

现在左边的JPanel 将在其自身上放置REDBLACKBLUE JPanel,其中GridBagLayout 作为其Layout ManagerRED and BLUE 具有weighty = 0.1 和@9876544444@3有weighty = 0.8

查看此示例代码:

import java.awt.*;
import javax.swing.*;

public class GridBagExample {
    private JPanel leftPanel;
    private JPanel redPanel;
    private JPanel blackPanel;
    private JPanel bluePanel;
    private JPanel greenPanel;
    private JPanel magentaPanel;

    private GridBagConstraints gbc;

    public GridBagExample() {
        gbc = new GridBagConstraints();
        gbc.anchor = GridBagConstraints.FIRST_LINE_START;
    }

    private void displayGUI() {
        JFrame frame = new JFrame("GridBagLayout Example");
        frame.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);

        JPanel contentPane = new JPanel(new GridBagLayout());

        leftPanel = getPanel(Color.WHITE);
        leftPanel.setLayout(new GridBagLayout());
        redPanel = getPanel(Color.RED.darker());
        blackPanel = getPanel(Color.BLACK);
        bluePanel = getPanel(Color.CYAN.darker().darker());
        greenPanel = getPanel(Color.GREEN.darker().darker());
        magentaPanel = getPanel(Color.MAGENTA);
        /**
          * @param : 
          * leftPanel : JPanel (with GridBagLayout), on which
          *               all other components will be placed.
          * redPanel : JPanel, which will be added to the leftPanel
          * 0 : specifies the grid X, which in this case is 0
          * 0 : specifies the grid Y, which in this case is 0
          * 1 : specifies the width for this grid (cell), we keeping 
          *     this default as 1
          * 1 : specifies the height for this grid (cell), we keeping
          *     this default as 1
          * GridBagConstraints.BOTH : allows JPanel to expand in both
          *     directions as the containing container expands (in 
          *     this case redPanel will expand both HORIZONTALLY and
          *     VERTICALLY, as leftPanel will expand)
          * weightx : This is the actual width the redPanel will occupy
          *           relative to all other components on the leftPanel
          * weighty : This is the actual height the redPanel will occupy
          *           relative to all other components on the leftPanel
          */
        addComp(leftPanel, redPanel, 0, 0, 1, 1,
                        GridBagConstraints.BOTH, 1.0, 0.1);
        addComp(leftPanel, blackPanel, 0, 1, 1, 1,
                        GridBagConstraints.BOTH, 1.0, 0.8);
        addComp(leftPanel, bluePanel, 0, 2, 1, 1,
                        GridBagConstraints.BOTH, 1.0, 0.1);
        addComp(contentPane, leftPanel, 0, 0, 1, 2,
                        GridBagConstraints.BOTH, 0.5, 1.0);
        addComp(contentPane, greenPanel, 1, 0, 1, 1,
                        GridBagConstraints.BOTH, 0.5, 0.3);
        addComp(contentPane, magentaPanel, 1, 1, 1, 1,
                        GridBagConstraints.BOTH, 0.5, 0.7);

        frame.setContentPane(contentPane);
        /*
         * Once you will add components to these
         * JPanels, then use pack(), instead of
         * setSize(). The use of the latter is 
         * just for illustration purpose only
         */
        //frame.pack();
        frame.setSize(300, 300);
        frame.setLocationByPlatform(true);
        frame.setVisible(true);
    }

    private void addComp(JPanel panel, JComponent comp,
                            int x, int y, int width, int height,
                            int fill, double weightx, double weighty) {
        gbc.gridx = x;
        gbc.gridy = y;
        gbc.gridwidth = width;
        gbc.gridheight = height;
        gbc.fill = fill;
        gbc.weightx = weightx;
        gbc.weighty = weighty;

        panel.add(comp, gbc);
    }

    private JPanel getPanel(Color backColor) {
        JPanel panel = new JPanel();
        panel.setOpaque(true);
        panel.setBackground(backColor);

        return panel;
    }

    public static void main(String[] args) {
        Runnable runnable = new Runnable() {
            @Override
            public void run() {
                new GridBagExample().displayGUI();
            }
        };
        EventQueue.invokeLater(runnable);
    }
}

这是相同的输出:

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 2020-09-18
    • 1970-01-01
    • 1970-01-01
    • 2017-03-12
    • 1970-01-01
    • 1970-01-01
    • 2019-08-23
    • 2020-01-10
    相关资源
    最近更新 更多