0

我正在尝试使用以下面板布局创建 UI:

http://i.imgur.com/jrYUxRO.jpg

但是,当我用图像(在 JLabels 上)填充白色面板时,会发生以下情况:

http://i.imgur.com/3ECRndH.jpg

问题会是图像本身不会调整大小以使面板“适合”吗?如果是这样,是否可以轻松调整它们的大小,或者我是否必须找到 GridBag 分配给它的大小,然后根据该大小缩放每个图像?

编辑:我在这里尝试做的是在我实际添加图像时保持面板 1(白色)与第一张图片中的大小相同。我不希望面板调整大小并接管其他一些面板。

    GridBagLayout gb = new GridBagLayout();
    gb.columnWeights = new double[] {0.25,0.25,0.25,0.25};
    gb.rowWeights = new double[] {0.5,0.5};
    setLayout(gb);
    GridBagConstraints gc = new GridBagConstraints();

    gc.fill = GridBagConstraints.BOTH;

    gc.gridx = 0;
    gc.gridy = 0;
    gc.gridwidth = 3;
    add(new WhitePanel(), gc);

    gc.gridx = 3;
    gc.gridy = 0;
    gc.gridwidth = 1;
    add(new RedPanel(), gc);

    gc.gridx = 0;
    gc.gridy = 1;
    gc.gridwidth = 1;
    add(new GreenPanel(), gc);

    gc.gridx = 1;
    gc.gridy = 1;
    gc.gridwidth = 2;
    add(new BluePanel(), gc);

    gc.gridx = 3;
    gc.gridy = 1;
    gc.gridwidth = 1;
    add(new YellowPanel(), gc);

以下是我的 WhitePanel 构造函数:

    public WhitePanel()
    {
        setBackground(new Color(1f,1f,1f,1f));

        setLayout(new GridBagLayout());
        GridBagConstraints gc = new GridBagConstraints();

        gc.gridx = 0;
        gc.gridy = 0;
        gc.weightx = 1;
        gc.weighty = 1;
        gc.anchor = GridBagConstraints.CENTER;

        for (int type = 0; type < 4; type++)
        {
            for (int tier = 0; tier < 7; tier++)
            {
                gems[type][tier] = new D3Gem(type, tier, 0);
                add(new JLabel(new ImageIcon(gems[type][tier].getImage())),gc);
                gc.gridx++;
            }
            gc.gridx = 0;
            gc.gridy++;
        }
    }

编辑编辑:我希望白色面板保持相同的大小,并希望 JLabels 本身调整大小(即缩小标签之间的空白)以适应该面板。

注意:如果我没有 line gc.fill = GridBagConstraints.BOTH;,那么白色面板上的图像只占白色面板的一小部分(刚好足够它们不重叠)。结果,我认为这gc.fill = GridBagConstraints.BOTH;会完美地填满白色面板。

“解决方案”编辑:好吧,我似乎有一个解决方案,尽管一个不稳定的解决方案。我只是附加 setPreferredSize(new Dimension(1,1));到白色面板的构造函数中,结果它保持了我想要的大小。如果有人愿意详细说明发生了什么,我将不胜感激:)

4

1 回答 1

2

您可以ipadx为红色(或黄色)面板定义GridBagConstraint

来自 javadoc

/**
 * This field specifies the internal padding of the component, how much
 * space to add to the minimum width of the component. The width of
 * the component is at least its minimum width plus
 * <code>ipadx</code> pixels.
 * <p>
 * The default value is <code>0</code>.
 * @serial
 * @see #clone()
 * @see java.awt.GridBagConstraints#ipady
 */
public int ipadx;
于 2013-09-09T05:39:57.220 回答