Java GUI编程(6)---流式布局FlowLayout

java提供布局管理器编写的GUI界面程式具有平台无关性.

FlowLayout(流式布局)特征

不管对齐方式,组件均按照从左到右的方式进行排列,一行排满,转到下一行。

构造函数

FlowLayout()  //创建FlowLayout对象,默认居中对齐的,默认水平和垂直间隙是5个像素

FlowLayout(int align) //自定义容器中的控件对齐方式

align参数值

0或FlowLayout.lEFT ,左对齐

1或FlowLayout.CENTER ,居中对齐

2或FlowLayout.RIGHT ,右对齐

3或FlowLayout.LEADING

4或FlowLayout.TRAILING

其他的整数,则为左对齐

FlowLayout(int align, int hgap, int vgap) //

常用方法

Void setAlignment(int align)

setLayout(new FlowLayout())

演示代码

package com.msh.util;
import java.awt.Color;
import java.awt.FlowLayout;
import javax.swing.JButton;
import javax.swing.JFrame;
import static javax.swing.WindowConstants.DISPOSE_ON_CLOSE;
public class DemoFlowLayout {

    public static void main(String[] args) {
        JFrame jf=new JFrame("演示FlowLayout(流方布局管理器)");
        jf.setSize(400,300);
        // 容器布局方式设置为FlowLayout,左对齐,水平和垂直间距为5
        FlowLayout fl = new FlowLayout(FlowLayout.LEFT, 5, 5);
        jf.setLayout(fl);
        
        JButton btn = null;
        for (int i = 0; i <= 9; i++) 
        {
           btn = new JButton("JButton-" + i);
	   jf.add(btn);
	}
        jf.setDefaultCloseOperation(DISPOSE_ON_CLOSE);
        jf.setLocation(400, 300);
        jf.setSize(400, 200);
        jf.setBackground(Color.white);
        jf.setVisible(true);  
    }
    
}

运行程式

Java GUI编程(6)---流式布局FlowLayout_第1张图片

你可能感兴趣的:(Java书院)