当垂直滚动条出现时,JScrollPane不够宽

时间:2012-07-20 21:41:53

标签: java swing jscrollpane

我在同一个窗口中有两个JScrollPanes。左侧的那个足够大,可以显示所包含面板的内容。右边的那个不够大,无法显示其内容,因此需要创建一个垂直滚动条。

JScrollPane Issue

但正如您所看到的,问题是当出现垂直滚动条时,滚动条会出现在JScrollPane的 inside 中。它覆盖了内部包含的内容,因此需要水平滚动条来显示所有内容。我想要那个固定。

我意识到我可以一直打开垂直滚动条,但出于美观原因,我只希望它在必要时出现,而不需要出现水平滚动窗格。

编辑:我的启动代码非常简单:

JScrollPane groupPanelScroller = new JScrollPane(groupPanel);
this.add(groupPanelScroller, "align center");

我正在使用MigLayout(MigLayout.com),但无论我使用什么版面管理器,这个问题似乎都会出现。此外,如果我缩小窗口以使左面板不再足以显示所有内容,则会出现与右面板相同的行为。

6 个答案:

答案 0 :(得分:11)

首先:组件级never-ever tweak the sizing hints。特别是当你有一个强大的LayoutManager,比如MigLayout,它支持在经理级别进行调整时。

在代码中,调整pref大小:

// calculate some width to add to pref, f.i. to take the scrollbar width into account
final JScrollPane pane = new JScrollPane(comp);
int prefBarWidth = pane.getVerticalScrollBar().getPreferredSize().width;
// **do not**  
comp.setPreferredSize(new Dimension(comp.getPreferredSize().width + prefBarWidth, ...);
// **do**
String pref = "(pref+" + prefBarWidth + "px)"; 
content.add(pane, "width " + pref);

那说:基本上,你在ScrollPaneLayout中遇到了一个(可论证的)错误。虽然它看起来像考虑滚动条宽度,但它实际上并非在所有情况下。来自preferredLayoutSize

的相关代码段
// filling the sizes used for calculating the pref
Dimension extentSize = null;
Dimension viewSize = null;
Component view = null;

if (viewport != null) {
    extentSize = viewport.getPreferredSize();
    view = viewport.getView();
    if (view != null) {
        viewSize = view.getPreferredSize();
    } else {
        viewSize = new Dimension(0, 0);
    }
}

....

// the part trying to take the scrollbar width into account

if ((vsb != null) && (vsbPolicy != VERTICAL_SCROLLBAR_NEVER)) {
    if (vsbPolicy == VERTICAL_SCROLLBAR_ALWAYS) {
        prefWidth += vsb.getPreferredSize().width;
    }
    else if ((viewSize != null) && (extentSize != null)) {
        boolean canScroll = true;
        if (view instanceof Scrollable) {
            canScroll = !((Scrollable)view).getScrollableTracksViewportHeight();
        }
        if (canScroll && 
            // following condition is the **culprit** 
            (viewSize.height > extentSize.height)) {
            prefWidth += vsb.getPreferredSize().width;
        }
    }
}

这是罪魁祸首,因为

  • 它将视图pref与viewport pref进行比较
  • 他们大部分时间都是一样的

结果就是你所看到的:滚动条与视图重叠(在切断一些宽度的意义上)。

hack around是一个自定义ScrollPaneLayout,如果视图的高度小于实际视口高度,它会添加滚动条宽度,这是一个粗略的例子(注意:生产质量)玩

public static class MyScrollPaneLayout extends ScrollPaneLayout {

    @Override
    public Dimension preferredLayoutSize(Container parent) {
        Dimension dim =  super.preferredLayoutSize(parent);
        JScrollPane pane = (JScrollPane) parent;
        Component comp = pane.getViewport().getView();
        Dimension viewPref = comp.getPreferredSize();
        Dimension port = pane.getViewport().getExtentSize();
        // **Edit 2** changed condition to <= to prevent jumping
        if (port.height < viewPref.height) {
            dim.width += pane.getVerticalScrollBar().getPreferredSize().width;
        }
        return dim;
    }

}

修改

嗯...看到跳跃(在显示与不显示垂直滚动条之间,如评论中所述):当我将示例中的文本字段替换为另一个scrollPane时,然后调整“near”其pref宽度显示问题。所以hack不够好,可能是因为询问视口的范围是不正确的(在布局过程中)。目前不知道,如何做得更好。

修改2

暂定跟踪:当逐像素宽度发生变化时,感觉就像是一次性错误。将条件从<更改为<=似乎可以解决跳跃问题 - 以始终添加滚动条宽度为代价。总的来说,这导致第一步有更广泛的尾随插入;-)同时相信scollLlayout的整个逻辑需要改进......

总结您的选择:

  • 调整(MigLayout)componentConstraint中的pref宽度。这是最简单的,缺点是在滚动条未显示
  • 的情况下附加尾随空格
  • 修复scrollPaneLayout。需要一些努力和测试(参见核心ScrollPaneLayout的代码需要做什么),优点是滚动条不一致的填充
  • 不是选项手动设置组件上的pref宽度

下面是代码示例:

// adjust the pref width in the component constraint
MigLayout layout = new MigLayout("wrap 2", "[][]");
final JComponent comp = new JPanel(layout);
for (int i = 0; i < 10; i++) {
    comp.add(new JLabel("some item: "));
    comp.add(new JTextField(i + 5));
}

MigLayout outer = new MigLayout("wrap 2", 
        "[][grow, fill]");
JComponent content = new JPanel(outer);
final JScrollPane pane = new JScrollPane(comp);
int prefBarWidth = pane.getVerticalScrollBar().getPreferredSize().width;
String pref = "(pref+" + prefBarWidth + "px)";
content.add(pane, "width " + pref);
content.add(new JTextField("some dummy") );
Action action = new AbstractAction("add row") {

    @Override
    public void actionPerformed(ActionEvent e) {
        int count = (comp.getComponentCount() +1)/ 2;
        comp.add(new JLabel("some Item: "));
        comp.add(new JTextField(count + 5));
        pane.getParent().revalidate();
    }
};
frame.add(new JButton(action), BorderLayout.SOUTH);
frame.add(content);
frame.pack();
frame.setSize(frame.getWidth()*2, frame.getHeight());
frame.setVisible(true);

// use a custom ScrollPaneLayout
MigLayout layout = new MigLayout("wrap 2", "[][]");
final JComponent comp = new JPanel(layout);
for (int i = 0; i < 10; i++) {
    comp.add(new JLabel("some item: "));
    comp.add(new JTextField(i + 5));
}

MigLayout outer = new MigLayout("wrap 2", 
        "[][grow, fill]");
JComponent content = new JPanel(outer);
final JScrollPane pane = new JScrollPane(comp);
pane.setLayout(new MyScrollPaneLayout());
content.add(pane);
content.add(new JTextField("some dummy") );
Action action = new AbstractAction("add row") {

    @Override
    public void actionPerformed(ActionEvent e) {
        int count = (comp.getComponentCount() +1)/ 2;
        comp.add(new JLabel("some Item: "));
        comp.add(new JTextField(count + 5));
        pane.getParent().revalidate();
    }
};
frame.add(new JButton(action), BorderLayout.SOUTH);
frame.add(content);
frame.pack();
frame.setSize(frame.getWidth()*2, frame.getHeight());
frame.setVisible(true);

答案 1 :(得分:3)

我明白了。问题是,当滚动条变为可见时,JScrollPane符合内容的大小并与其重叠。所以我决定让内容更加宽大,以使其适应滚动条,如果它变得可见。这也可以通过使insets成为Scrollbar的宽度来完成,这可能是更正统的方式。

int scrollBarWidth = new JScrollPane().getVerticalScrollBar().getPreferredSize();
groupPanel.setLayout(new MigLayout("insets 1 " + scrollBarWidth + " 1 " + scrollBarWidth*1.5); //Adjust multipliers and widths to suit
//...
//Add everything in
//...
JScrollPane groupPanelScroller = new JScrollPane(groupPanel);
groupPanelScroller.setHorizontalScrollBarPolicy(JScrollPane.HORIZONTAL_SCROLLBAR_NEVER);
this.add(groupPanelScroller, "align center");

编辑:上面的答案可能是更好的答案,但这是我对好奇的原始答案,实际上调整了面板的大小。

JScrollPane groupPanelScroller = new JScrollPane(groupPanel);
groupPanel.setPreferredSize(new Dimension(groupPanel.getPreferredSize().width + groupPanelScroller.getVerticalScrollBar().getVisibleAmount()*2, 
        groupPanel.getPreferredSize().height));
groupPanelScroller.setHorizontalScrollBarPolicy(JScrollPane.HORIZONTAL_SCROLLBAR_NEVER);
this.add(groupPanelScroller, "align center");

这样做会使内容大小相同,加上滚动条宽度的两倍。由于所有内容都是居中的,所以它们看起来都是一样的,然后如果出现滚动条,则一侧的一些额外空间会被填充。

答案 2 :(得分:1)

我遇到了同样的问题,经过几个小时的努力找到原因后来到这里。我最终实现了自己的ViewportLayout,并希望分享这个解决方案。

潜在的问题是,ScrollPaneLayout不知道一个维度(在您的情况下是视图的高度)将被约束为最大值,因此它无法预先确定是否需要滚动条。因此,它无法调整其他灵活尺寸(在您的情况下是宽度)。

自定义ViewportLayout可以考虑这一点,向其父级询问允许的高度,从而允许ScrollPaneLayout相应地调整首选宽度:

public class ConstrainedViewPortLayout extends ViewportLayout {

    @Override
    public Dimension preferredLayoutSize(Container parent) {

        Dimension preferredViewSize = super.preferredLayoutSize(parent);

        Container viewportContainer = parent.getParent();
        if (viewportContainer != null) {
            Dimension parentSize = viewportContainer.getSize();
            preferredViewSize.height = parentSize.height;
        }

        return preferredViewSize;
    }
}

ViewportLayout设置如下:

scrollPane.getViewport().setLayout(new ConstrainedViewPortLayout());

答案 3 :(得分:1)

这个bug现在好几年了,但仍然没有修复,所以我会添加我的贡献。

您还可以通过在JScrollPane的视图组件上实现 javax.swing.Scrollable 来解决此问题。 ScrollPaneLayout 检查此接口的方法,以确定是否首先显示水平滚动条,然后再回到其错误的计算中。

您可以实现Scrollable接口,以便视图组件的处理方式与实现Scrollable之前的情况完全相同,之外,用于确定是否显示水平滚动条的方法。

一个具体的例子来证明这一点,我没有单独测试,而是从我们的代码库中提取。变化:

JPanel panel = new JPanel();
JScrollPane pane = new JScrollPane(panel);

class ScrollableJPanel extends JPanel implements Scrollable {
    @Override public Dimension getPreferredScrollableViewportSize() {
        return getPreferredSize();
    }

    @Override public int getScrollableUnitIncrement(Rectangle visibleRect, int orientation, int direction) {
        JScrollPane scrollPane = (JScrollPane)getParent();
        return orientation == SwingConstants.VERTICAL ? scrollPane.getVerticalScrollBar().getUnitIncrement() : scrollPane.getHorizontalScrollBar().getUnitIncrement();
    }

    @Override public int getScrollableBlockIncrement(Rectangle visibleRect, int orientation, int direction) {
        JScrollPane scrollPane = (JScrollPane)getParent();
        return orientation == SwingConstants.VERTICAL ? scrollPane.getVerticalScrollBar().getBlockIncrement() : scrollPane.getHorizontalScrollBar().getBlockIncrement();
    }

    @Override public boolean getScrollableTracksViewportHeight() {
        return false;
    }

    @Override public boolean getScrollableTracksViewportWidth() {
        Dimension sz = getSize();
        Dimension vsz = getViewportSize();
        return sz.width - 1 <= vsz.width; // This is the bodge
    }
}

JPanel panel = new ScrollableJPanel();
JScrollPane pane = new JScrollPane();

在针对Java 1.8 rt.jar测试我们的应用程序以修改打印大量调试输出时,我们发现该值只有一个像素 - 所以这是我们在上面提到的那个常量。

顺便提一下,这已经提交给了Oracle https://bugs.openjdk.java.net/browse/JDK-8042020,但它被标记为“无法修复”。

答案 4 :(得分:0)

  • 此图片谈论GridLayout,两个部分都有相同的尺寸

  • 使用接受不同PreferredSize LayoutManagerBoxLayout

  • 的正确GridBagLayout

答案 5 :(得分:0)

好的我有完全相同的问题:

  • 将(子)面板动态添加到(主)面板中,该面板放入 jscrollpane(我想创建一个垂直的面板列表)
  • jscrollpane的垂直滚动条与我的内容重叠 (即我的子面板)。

我试图在没有真正解决方案的情况下跟踪互联网(和stackoverflow)上发现的大量变通办法!

以下是我的理解,我的工作解决方案

  • 似乎scrollpanelayout(jscrollpane使用的布局管理器)中存在一个错误,它无法正确计算其中组件的大小。

  • 如果你把mainpanel.setPreferedSize(新的Dimension(1,1)),没有更多的重叠错误,但垂直滚动条(如果作为VERTICAL_SCROLLBAR_​​ALWAYS放置的事件)将不会滚动!这是因为滚动窗格认为您的内容是1像素高度。

  • 因此,只需遍历您的子面板并计算适当的高度:

//into your constructor or somewhere else
JPanel mainpanel = new JPanel();
mainpanel.setLayout(new BoxLayout(mainpanel, BoxLayout.Y_AXIS));
JScrollPane scrollPane = new JScrollPane(mainpanel, ScrollPaneConstants.VERTICAL_SCROLLBAR_ALWAYS, ScrollPaneConstants.HORIZONTAL_SCROLLBAR_NEVER);


//into another function to create dynamic content
int height = 0;
for (int i = 0; i < nb_subpanel_to_create; ++i) {
    JPanel subpanel = create_your_sub_panel();
    height += subpanel.getPreferedSize().height;
    mainpanel.add(subpanel);
}
mainpanel.setPreferedSize(new Dimension(1, height);

<强>加成:

如果您希望将“list”中的内容叠加到顶部:

List<JComponent> cmps = new LinkedList<JComponent>();
int height = 0;
for (int i = 0; i < nb_subpanel_to_create; ++i) {
    JPanel subpanel = create_your_sub_panel();
    height += subpanel.getPreferedSize().height;
    cmps.add(subpanel);
}
mainpanel.add(stackNorth(subpanel));
mainpanel.setPreferedSize(new Dimension(1, height);

和stackNorth函数:

public static JPanel stackNorth(List<JComponent> components) {
     JPanel last = new JPanel(new BorderLayout());
     JPanel first = last;
     for (JComponent jComponent : components) {
          last.add(jComponent, BorderLayout.NORTH);
          JPanel tmp = new JPanel(new BorderLayout());
          last.add(tmp, BorderLayout.CENTER);
          last = tmp;
     }
     return first;
}