嵌套的JScrollPane不合适

时间:2013-07-12 14:58:26

标签: java swing layout jpanel jscrollpane

我遇到嵌套JScrollPanes的问题。基本上我想要一个外部JScrollPane垂直滚动而不是水平滚动(想想Netflix Web界面)。在这个外部JScrollPane里面,我希望有多个水平滚动的JScrollPanes。我的问题是内部JScrollPanes的水平滚动条从不显示,因为它们看起来像是占用了JPanels的整个首选大小。这是描述我在说什么的图像:

enter image description here

编辑:此代码基于camickr的回答现在正在运行:

import java.awt.BorderLayout;

import javax.swing.BoxLayout;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.JScrollPane;

public class NestedScrollPane extends JFrame {

    public NestedScrollPane() {
        ScrollablePanel outerPanel = new ScrollablePanel();
        outerPanel.setScrollableWidth(ScrollablePanel.ScrollableSizeHint.FIT);
        outerPanel.setLayout(new BoxLayout(outerPanel, BoxLayout.Y_AXIS));
        for (int j = 0; j < 20; j++) {
            ScrollablePanel innerPanel = new ScrollablePanel();
            innerPanel.setScrollableHeight(ScrollablePanel.ScrollableSizeHint.NONE);
            innerPanel.setLayout(new BoxLayout(innerPanel, BoxLayout.X_AXIS));
            JScrollPane innerScrollPane = new JScrollPane(innerPanel);
            innerScrollPane.setHorizontalScrollBarPolicy(JScrollPane.HORIZONTAL_SCROLLBAR_ALWAYS);
            for (int i = 0; i < 10; i++) {
                JLabel longLabel = new JLabel("asefaesfesfesfgesgersgrsgdrsgdrsgderg ");
                innerPanel.add(longLabel);
            }
            outerPanel.add(innerScrollPane);
        }
        JScrollPane outerPane = new JScrollPane(outerPanel);
        outerPane.setHorizontalScrollBarPolicy(JScrollPane.HORIZONTAL_SCROLLBAR_NEVER);
        this.setContentPane(outerPane);
        this.setSize(400, 400);
        outerPane.setSize(400, 400);
        this.setVisible(true);
    }

    public static void main (String[] args) {
        NestedScrollPane pane = new NestedScrollPane();
        pane.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    }
}

我看了一下How to get JScrollPanes within a JScrollPane to follow parent's resizing,但在外面板上使用BoxLayout或BorderLayout似乎无法解决任何问题。

1 个答案:

答案 0 :(得分:6)

您需要实现添加到视口的外部面板的Scrollable界面,以强制面板填充视口的宽度。

一种简单的方法是使用Scrollable Panel。你应该可以使用:

// JPanel outerPanel = new JPanel();
ScrollablePanel outerPanel = new ScrollablePanel();
outerPanel.setScrollableWidth( ScrollablePanel.ScrollableSizeHint.FIT );