swing布局详解(附示例图)(抄录)

swing布局详解(附示例图)


当选择使用JPanel和顶层容器的content pane时,需要考虑布局管理。JPanel缺省是初始化一个FlowLayout,而content pane缺省是初始化一个BorderLayout。
下面将分别介绍几种最常用的布局管理器:FlowLayout、BorderLayout、BoxLayout、CardLayout、GridLayout和GridBagLayout。
 
代码演示
每一个布局管理器都会有一个代码演示,xxxLayoutDemo.java(见附件)。这些文件主要有三个方法组成:
addComponentsToPane()提供布局逻辑(依据不同的布局管理器和UI内容)。
Java代码  收藏代码
  1. public static void addComponentsToPane(Container pane) {。。。}  
  2. /** 
  3. *createAndShowGUI()实例化一个JFrame,通过它的ContentPane加载布局逻辑内容。 
  4. */  
  5. private static void createAndShowGUI() {  
  6.     // Create and set up the window.  
  7.     JFrame frame = new JFrame("FlowLayoutDemo");  
  8.     frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);  
  9.     // Set up the content pane.  
  10.     addComponentsToPane(frame.getContentPane());  
  11.     // Display the window.  
  12.     frame.pack();  
  13.     frame.setVisible(true);  
  14. }  
  15. //main()程序入口,单独起一个线程,实例化UI。  
  16. public static void main(String[] args) {  
  17.     javax.swing.SwingUtilities.invokeLater(new Runnable() {  
  18.        public void run() {  
  19.            createAndShowGUI();  
  20.        }  
  21.     });  
  22. }  
 
FlowLayout
FlowLayout类是最简单的布局管理器。它按照和页面上排列单词的类似方式来安排组件----从左到右,直至没有多余的空间,然后转到下一行。
效果:
内容面板代码:
Java代码  收藏代码
  1. public static void addComponentsToPane(Container pane) {  
  2.     pane.setLayout(new FlowLayout());  
  3.     pane.add(new JButton("Button 1"));  
  4.     pane.add(new JButton("Button 2"));  
  5.     pane.add(new JButton("Button 3"));  
  6.     pane.add(new JButton("Long-Named Button 4"));  
  7.     pane.add(new JButton("5"));  
  8. }  
 
BorderLayout
一个BorderLayout对象将界面分成五大区域,分别用BorderLayout类的静态常量指定:
-PAGE_START
-PAGE_END
-LINE_START
-LINE_END
-CENTER
效果:
 
内容面板代码:
Java代码  收藏代码
  1. public static void addComponentsToPane(Container pane) {         
  2.     JButton button = new JButton("Button 1 (PAGE_START)");  
  3.     pane.add(button, BorderLayout.PAGE_START);        
  4.     button = new JButton("Button 2 (CENTER)");  
  5.     button.setPreferredSize(new Dimension(200, 100));  
  6.     pane.add(button, BorderLayout.CENTER);      
  7.     button = new JButton("Button 3 (LINE_START)");  
  8.     pane.add(button, BorderLayout.LINE_START);        
  9.     button = new JButton("Long-Named Button 4 (PAGE_END)");  
  10.     pane.add(button, BorderLayout.PAGE_END);         
  11.     button = new JButton("5 (LINE_END)");  
  12.     pane.add(button, BorderLayout.LINE_END);  
  13. }  
 
BoxLayout
BoxLayout可以将组件由上至下或由左至右依次加入当前面板。
效果:
内容面板代码:
Java代码  收藏代码
  1. public static void addComponentsToPane(Container pane) {  
  2.     JPanel xPanel = new JPanel();  
  3.     xPanel.setLayout(new BoxLayout(xPanel, BoxLayout.X_AXIS));  
  4.     addButtons(xPanel);  
  5.     JPanel yPanel = new JPanel();  
  6.     yPanel.setLayout(new BoxLayout(yPanel, BoxLayout.Y_AXIS));  
  7.     addButtons(yPanel);  
  8.       
  9.     pane.add(yPanel, BorderLayout.PAGE_START);  
  10.     pane.add(xPanel, BorderLayout.PAGE_END);  
  11. }  
  12.    
  13. private static void addAButton(String text, Container container) {  
  14.     JButton button = new JButton(text);  
  15.     button.setAlignmentX(Component.CENTER_ALIGNMENT);  
  16.     container.add(button);  
  17. }  
  18.    
  19. private static void addButtons(Container container) {  
  20.     addAButton("Button 1", container);  
  21.     addAButton("Button 2", container);  
  22.     addAButton("Button 3", container);  
  23.     addAButton("Long-Named Button 4", container);  
  24.     addAButton("5", container);  
  25. }  
 
CardLayout
卡片布局和其他布局不同,因为它隐藏了一些组件。卡片布局就是一组容器或者组件,它们一次仅仅显是一个,组中的每个容器称为卡片。
效果:
内容面板代码:
Java代码  收藏代码
  1. public void addComponentToPane(Container pane) {  
  2.     final JPanel contentPanel = new JPanel();  
  3.     JPanel controlPanel = new JPanel();  
  4.     final CardLayout cardLayout=new CardLayout();;  
  5.     pane.setLayout(new BorderLayout());  
  6.     pane.add(contentPanel, BorderLayout.CENTER);  
  7.     pane.add(controlPanel, BorderLayout.PAGE_END);  
  8.     controlPanel.setLayout(new FlowLayout());  
  9.    
  10.     JButton[] b = new JButton[10];  
  11.     for (int i = 0; i < 10; i++) {  
  12.        b[i] = new JButton("No." + i);  
  13.        contentPanel.add(b[i]);  
  14.     }  
  15.     contentPanel.setLayout(cardLayout);  
  16.     JButton nextButton = new JButton("next");  
  17.     nextButton.addActionListener(new ActionListener(){  
  18.        public void actionPerformed(ActionEvent e) {  
  19.            cardLayout.next(contentPanel);  
  20.        }});  
  21.     controlPanel.add(nextButton);  
  22. }  
 
GridLayout
GridLayout让你建立一个组件表格,并且当组件加入时,会依序又左至右,由上至下填充到每个格子,它不能由你指定想放那个格子就放那个格子
效果:
内容面板代码:
Java代码  收藏代码
  1. public static void addComponentsToPane(Container pane) {  
  2.     JButton[] buttons = new JButton[9];  
  3.     pane.setLayout(new GridLayout(3, 3));  
  4.     for (int i = 0; i < buttons.length; i++) {  
  5.        buttons[i] = new JButton(i + "");  
  6.        pane.add(buttons[i]);  
  7.     }  
  8. }  
 
GridBagLayout
GridBagLayout是所有AWT布局管理器当中最复杂的,同时他的功能也是最强大的。GridBagLayout同GridLayout一样,在容器中以网格形式来管理组件。但GridBagLayout功能要来得强大得多。
1、GridBagLayout管理的所有行和列都可以是大小不同的;
2、GridLayout把每个组件限制到一个单元格,而GridBagLayout并不这样:组件在容器中可以占据任意大小的矩形区域。
GridBagLayout通常由一个专用类来对他布局行为进行约束,该类叫GridBagConstraints。其中有11个公有成员变量,GridBagConstraints可以从这11个方面来进行控制和操纵。这些内容是:
1、gridx—组件的横向座标;
2、girdy—组件的纵向座标;
3、gridwidth—组件的横向宽度,也就是指组件占用的列数;
4、gridheight—组件的纵向长度,也就是指组件占用的行数;
5、weightx—指行的权重,告诉布局管理器如何分配额外的水平空间;
6、weighty—指列的权重,告诉布局管理器如何分配额外的垂直空间;
7、anchor—当组件小于其显示区域时使用此字段;
8、fill—如果显示区域比组件的区域大的时候,可以用来控制组件的行为。控制组件是垂直填充,还是水平填充,或者两个方向一起填充;
9、insets—指组件与表格空间四周边缘的空白区域的大小;
10、ipadx— 组件间的横向间距,组件的宽度就是这个组件的最小宽度加上ipadx值;
11、ipady— 组件间的纵向间距,组件的高度就是这个组件的最小高度加上ipady值。
说明:
1、gridx,gridy:其实就是组件行列的设置,注意都是从0开始的,比如 gridx=0,gridy=1时放在0行1列;
2、gridwidth,gridheight:默认值为1;GridBagConstraints.REMAINDER常量,代表此组件为此行或此列的最后一个组件,会占据所有剩余的空间;
3、weightx,weighty:当窗口变大时,设置各组件跟着变大的比例。比如组件A的weightx=0.5,组件B的weightx=1,那么窗口X轴变大时剩余的空间就会以1:2的比例分配给组件A和B;
4、anchor:当组件空间大于组件本身时,要将组件置于何处。 有CENTER(默认值)、NORTH、NORTHEAST、EAST、SOUTHEAST、WEST、NORTHWEST选择。
5、insets:设置组件之间彼此的间距。它有四个参数,分别是上,左,下,右,默认为(0,0,0,0)。
效果:

内容面板代码:
Java代码  收藏代码
  1. public static void addComponentsToPane(Container pane) {  
  2.     JButton button;  
  3.     pane.setLayout(new GridBagLayout());  
  4.     GridBagConstraints c = new GridBagConstraints();  
  5.    
  6.     button = new JButton("Button 1");  
  7.     c.fill = GridBagConstraints.HORIZONTAL;  
  8.     c.gridx = 0;  
  9.     c.gridy = 0;  
  10.     pane.add(button, c);  
  11.    
  12.     button = new JButton("Button 2");  
  13.     c.fill = GridBagConstraints.HORIZONTAL;  
  14.     c.weightx = 0.5;  
  15.     c.gridx = 1;  
  16.     c.gridy = 0;  
  17.     pane.add(button, c);  
  18.    
  19.     button = new JButton("Button 3");  
  20.     c.fill = GridBagConstraints.HORIZONTAL;  
  21.     c.weightx = 0.5;  
  22.     c.gridx = 2;  
  23.     c.gridy = 0;  
  24.     pane.add(button, c);  
  25.    
  26.     button = new JButton("Long-Named Button 4");  
  27.     c.fill = GridBagConstraints.HORIZONTAL;  
  28.     c.ipady = 40; // make this component tall  
  29.     c.weightx = 0.0;  
  30.     c.gridwidth = 3;  
  31.     c.gridx = 0;  
  32.     c.gridy = 1;  
  33.     pane.add(button, c);  
  34.    
  35.     button = new JButton("5");  
  36.     c.fill = GridBagConstraints.HORIZONTAL;  
  37.     c.ipady = 0; // reset to default  
  38.     c.weighty = 1.0; // request any extra vertical space  
  39.     c.anchor = GridBagConstraints.PAGE_END; // bottom of space  
  40.     c.insets = new Insets(10, 0, 0, 0); // top padding  
  41.     c.gridx = 1; // aligned with button 2  
  42.     c.gridwidth = 2; // 2 columns wide  
  43.     c.gridy = 2; // third row  
  44.     pane.add(button, c);  
  45.     }  
 一个GardBagLayout布局的左右选择框,代码GridBagLayoutFrame.java见附件,效果:

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章