如何设置包含JScrollPane
的容器的大小,以便不显示滚动条?
考虑这个SSCCE(使用MigLayout):
public static void main(String[] args) {
JPanel panel = new JPanel(new MigLayout());
for(int i = 0; i < 15; i++) {
JTextArea textArea = new JTextArea();
textArea.setColumns(20);
textArea.setRows(5);
textArea.setWrapStyleWord(true);
textArea.setLineWrap(true);
JScrollPane jsp = new JScrollPane(textArea);
panel.add(new JLabel("Notes" + i));
panel.add(jsp, "span, grow");
}
JScrollPane jsp = new JScrollPane(panel);
JFrame frame = new JFrame();
frame.add(jsp);
frame.pack();
frame.setSize(jsp.getViewport().getViewSize().width, 500);
frame.setLocationRelativeTo(null);
frame.setVisible(true);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
}
正如你所看到的,我正在试图弄清楚要放在这一行上的内容:
frame.setSize(jsp.getViewport().getViewSize().width, 500);
目标是相对于视口内容设置宽度,以便不需要水平滚动条。
应该是:
编辑:按照camikr的建议,结果如下:
public static final int pref_height = 500;
public static void main(String[] args) {
JPanel panel = new JPanel(new MigLayout());
for(int i = 0; i < 15; i++) {
JTextArea textArea = new JTextArea();
textArea.setColumns(20);
textArea.setRows(5);
textArea.setWrapStyleWord(true);
textArea.setLineWrap(true);
JScrollPane jsp = new JScrollPane(textArea);
panel.add(new JLabel("Notes" + i));
panel.add(jsp, "span, grow");
}
JScrollPane jsp = new JScrollPane(panel) {
@Override
public Dimension getPreferredSize() {
setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_ALWAYS);
Dimension dim = new Dimension(super.getPreferredSize().width + getVerticalScrollBar().getSize().width, pref_height);
setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_AS_NEEDED);
return dim;
}
};
JFrame frame = new JFrame();
frame.add(jsp);
frame.pack();
frame.setLocationRelativeTo(null);
frame.setVisible(true);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
}
对我来说似乎有点hackish,但它确实有效。
答案 0 :(得分:4)
正如你所看到的,我正在试图弄清楚要放在这一行上的内容:
不要放任何东西。您不应该尝试管理框架的大小。例如,您的代码甚至不考虑框架的边框。如果你的代码被改变为使用框架的宽度,而不是滚动窗格。
更好的解决方案是覆盖滚动窗格的getPreferredSize()
方法以返回super.getPreferredSize()
的宽度,然后指定合理的高度。您需要确保垂直滚动条始终可见,以使计算起作用。
然后pack()方法将按预期工作。
答案 1 :(得分:0)
水平情况也是如此:
new JScrollPane(panel) {
public Dimension getPreferredSize() {
Component view = getViewport().getView();
if (view == null) return super.getPreferredSize();
int pref_width = view.getPreferredSize().width;
setHorizontalScrollBarPolicy(JScrollPane.HORIZONTAL_SCROLLBAR_ALWAYS);
Dimension dim = new Dimension(pref_width, super.getPreferredSize().height + getHorizontalScrollBar().getSize().height);
setHorizontalScrollBarPolicy(JScrollPane.HORIZONTAL_SCROLLBAR_AS_NEEDED);
return dim;
}
}
如果您稍后在滚动窗格内切换视图,它也会正确适应。