我有一个带有Flow Layout的包含面板JPanel,该包含面板在JScrollPane中,该包含面板在其中包含许多其他JPanels(内部面板).所有内面板均具有相同的尺寸.如果有更多的面板,则容纳面板可以保持其宽度,然后将它们向下网格化;如果有更多的面板,则容纳面板可以保持其高度,然后将内部面板对齐在同一网格中,最后一行以最后一行之前的行为中心.
当我调整对话框的大小时,包含的面板会扩展,布局流布局会执行其职责,但是,尽管面板的大小超出了JScrollPane的范围,但滚动条不会出现.
动态调整包含面板的尺寸时,如何控制滚动条的外观?
至于图像,他们应该总结一下:
扩展对话框宽度后:
亚当
解决方法:
您需要使包含面板实现可滚动,并根据宽度设置首选的可滚动视口大小.
import java.awt.*;
import javax.swing.*;
public class Test
{
public static void main(String args[])
{
EventQueue.invokeLater(new Runnable()
{
public void run()
{
JPanel container = new ScrollablePanel();
container.setLayout(new FlowLayout(FlowLayout.CENTER, 0, 0));
for( int i = 0; i < 20; ++i )
{
JPanel p = new JPanel();
p.setBorder(BorderFactory.createLineBorder(Color.RED));
p.setPreferredSize(new Dimension(50, 50));
p.add(new JLabel("" + i));
container.add(p);
}
JScrollPane scroll = new JScrollPane(container);
scroll.setHorizontalScrollBarPolicy(JScrollPane.HORIZONTAL_SCROLLBAR_NEVER);
scroll.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_AS_NEEDED);
JFrame f = new JFrame("Test");
f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
f.getContentPane().add(scroll);
f.pack();
f.setSize(250, 300);
f.setLocationRelativeTo(null);
f.setVisible(true);
}
});
}
}
class ScrollablePanel extends JPanel implements Scrollable
{
public Dimension getPreferredSize()
{
return getPreferredScrollableViewportSize();
}
public Dimension getPreferredScrollableViewportSize()
{
if( getParent() == null )
return getSize();
Dimension d = getParent().getSize();
int c = (int)Math.floor((d.width - getInsets().left - getInsets().right) / 50.0);
if( c == 0 )
return d;
int r = 20 / c;
if( r * c < 20 )
++r;
return new Dimension(c * 50, r * 50);
}
public int getScrollableBlockIncrement(Rectangle visibleRect, int orientation, int direction)
{
return 50;
}
public int getScrollableUnitIncrement(Rectangle visibleRect, int orientation, int direction)
{
return 10;
}
public boolean getScrollableTracksViewportHeight()
{
return false;
}
public boolean getScrollableTracksViewportWidth()
{
return getParent() != null ? getParent().getSize().width > getPreferredSize().width : true;
}
}
为了简单起见,所有数字都经过硬编码,但是您应该明白这一点.