如何垂直滚动到JPanel?

时间:2010-02-18 10:15:16

标签: java swing

我已经使用swing在java中编写了一个代码,因此我将JscrollPane添加到JPanel,然后我将以垂直方式将固定大小的按钮添加到JPanel

    JPanel panel=new JPanel();
    panel.setBackground(Color.WHITE);

    int v=ScrollPaneConstants.VERTICAL_SCROLLBAR_ALWAYS;
    int h=ScrollPaneConstants.HORIZONTAL_SCROLLBAR_ALWAYS; 
    JScrollPane jsp=new JScrollPane(panel,v,h);
    jsp.setPreferredSize(new Dimension(600,600));
    jsp.setBounds(150,670,850,200);
    frame.add(jsp);

然后我在运行时向它添加按钮。

     for(i=0;i<n;i++) 
    {
         button[i]=new JButton();
         button[i].setBounds(20,y,120,120);
         button[i].setSize(120,120);
         button[i].setToolTipText(file[i].toString());       
         button[i].setIcon(Icon);
         panel.add(button[i]);   
         y=y+140;
     }

我想在另一个下面添加一个按钮...(即我想要一个垂直滚动条)

即。按钮1

 button2

   '

   '

但是上面的代码给了我一行中的按钮(即我得到水平滚动条) 即button1 button2 ......

另一个问题是按钮的大小。使用btn.setSize()根本不影响大小......

任何人都可以帮助我吗?

7 个答案:

答案 0 :(得分:7)

您必须为面板使用适当的Layoutmanager,如GridLayout,Boxlayout或GridBagLayout。
这取决于你想要放入面板的其他内容。

GridLayout更易于使用IMO:

JPanel panel = new JPanel();
panel.setLayout(new GridLayout(0, 1));  // any number of rows, 1 column
...
    panel.add(button[i]);

BoxLayout几乎一样容易:

JPanel panel = new JPanel();
panel.setLayout(new BoxLayout(panel, BoxLayout.Y_AXIS));
...
    panel.add(button[i]);

GridBagLayout功能更强大,允许多个列,跨越多个单元格的组件,......需要GridBagConstraints来添加元素:

JPanel panel = new JPanel();
panel.setLayout(new GridBagLayout());
GridBagConstraints constraints = new GridBagConstraints(
    0, RELATIVE,    // x = 0, y = below previous element
    1, 1,           // cell width = 1, cell height = 1
    0.0, 0.0        // how to distribute space: weightx = 0.0, weighty = 0,0 
    GridBagConstraints.CENTER,  // anchor
    GridBagConstraints.BOTH,    // fill
    new Insets(0, 0, 0, 0),     // cell insets
    0, 0);          // internal padding
...
    panel.add(button[i], constraints);

看一下本教程:Laying Out Components Within a Container(视觉指南是一个很好的起点)

修改
您还可以手动布置组件 ,即指定容器中每个组件的位置和大小。为此,您必须将LayoutManager设置为null,以便删除默认管理器。

JPanel panel = new JPanel();
panel.setLayout(null);
...
    button[i].setLocation(x, y);
    button[i].setSize(width, heigth);
    // OR button[i].setBounds(x, y, width, height);
    panel.add(button[i]);

答案 1 :(得分:3)

您需要为JPanel定义合适的LayoutManagerComponent负责LayoutManager添加到FlowLayout的位置。默认ComponentComponent,从左到右列出{{1}}。要垂直布置{{1}},您应该考虑使用BoxLayoutGridBagLayout

答案 2 :(得分:1)

您必须为JPanel设置LayoutManager或使用Box(BoxLayout.Y_AXIS)。

答案 3 :(得分:1)

对于按钮的大小,请使用preferredSize

对于布局问题,您需要将布局管理器更改为执行垂直布局的布局管理器。为了实现目的,您可以像这样使用BoxLayout:

panel.setLayout(new BoxLayout(panel, BoxLayout.Y_AXIS));

答案 4 :(得分:1)

如果让layout manager完成其工作,这会容易得多。

在Swing中,组件在其他组件(例如面板)上的布局方式是使用布局管理器。

它用于避免每次容器组件调整大小或添加新组件时必须相互计算所有组件的坐标。

有不同的布局管理器,您需要的是BoxLayout

通过使用此布局,您无需指定按钮位置或其大小。布局管理器查询每个组件并使用该信息将它们放置在正确的位置和大小。

例如以下框架

alt text http://img691.imageshack.us/img691/4016/samplepl.png

创建此(您的修改版本)代码:

import javax.swing.*;
import java.awt.*;
public class ScrollTest {

    private JPanel panel;
    private Icon[] icons = new Icon[3];


    public void main() {
        panel =new JPanel();

        // Use top to bottom layout in a column
        panel.setLayout( new BoxLayout( panel, BoxLayout.Y_AXIS ));


        panel.setBackground(Color.WHITE);

        int v=ScrollPaneConstants.VERTICAL_SCROLLBAR_ALWAYS;
        int h=ScrollPaneConstants.HORIZONTAL_SCROLLBAR_ALWAYS; 
        JScrollPane jsp=new JScrollPane(panel,v,h);
        jsp.setPreferredSize(new Dimension(600,600));
        jsp.setBounds(150,670,850,200);
        JFrame frame = new JFrame();
        frame.add(jsp); 

        // my addition to load sample icons
        loadImages();
        // simulate dynamic buttons 
        addButtons();

        frame.pack();
        frame.setVisible( true );

    }
    void loadImages() {
        icons[0] = new ImageIcon( "a.png" );
        icons[1] = new ImageIcon( "b.png" );
        icons[2] = new ImageIcon( "c.png" );
    }

    void addButtons() {
        for( int i = 0 ; i < icons.length ; i++ ) {
           JButton button = new JButton();
           Icon icon = icons[i];
           button.setIcon( icon );
           // Set the button size to be the same as the icon size
           // The preferred size is used by the layout manager
           // to know what the component "better" size is.
           button.setPreferredSize( new Dimension( icon.getIconWidth(),
                                                   icon.getIconHeight() ) );
           // This is IMPORTANT. The maximum size is used bythe layout manager 
           // to know "how big" could this component be.
           button.setMaximumSize( button.getPreferredSize() );
           panel.add( button );
        }
}
public static void main( String ... args ) { 
    new ScrollTest().main();
}

}

我希望这会有所帮助。

答案 5 :(得分:0)

还可以使用SpringLayoutJPanel进行垂直滚动。如果通过设置约束SpringLayout.SOUTH来定义面板的垂直尺寸,则可以。这可以这样做:

JPanel panel = new JPanel();
SpringLayout panelLayout = new SpringLayout();
panel.setLayout(panelLayout);

// Adding components to the panel here
// .....

// That's what defines panel's exact size and makes its scrolling possible
panelLayout.putConstraint(SpringLayout.SOUTH, panel, 0,
        SpringLayout.SOUTH, lastComponentOfThePanel);

JScrollPane panelScrollPane = new JScrollPane(panel);

其中lastComponentOfThePanel是面板底部的组件。

希望这会对某人有所帮助。在我看来,SpringLayout是非常强大的布局管理器,有时用GridBagLayout替换这个布局管理器非常困难或几乎不可能。

答案 6 :(得分:0)

怎么样?

JScrollPane scrollPane = new JScrollPane(yourpanel);
container.add(scrollPane);