📜  Java LayoutManagers-FlowLayout

📅  最后修改于: 2020-10-01 03:55:34             🧑  作者: Mango

Java FlowLayout

FlowLayout用于将组件依次排成一行(在流中)。它是applet或面板的默认布局。

FlowLayout类的字段

  • 公共静态最终诠释LEFT
  • 公共静态最终诠释权
  • public static final int CENTER
  • public static final int领先
  • 公共静态最终诠释

FlowLayout类的构造方法

  • FlowLayout():创建具有居中对齐和默认5单位的水平和垂直间隙的流布局。
  • FlowLayout(int align):创建具有给定对齐方式和默认5单位的水平和垂直间隙的流布局。
  • FlowLayout(int align,int hgap,int vgap):创建具有给定对齐方式和给定水平和垂直间隙的流布局。

FlowLayout类的示例

import java.awt.*;
import javax.swing.*;

public class MyFlowLayout{
JFrame f;
MyFlowLayout(){
f=new JFrame();

JButton b1=new JButton("1");
JButton b2=new JButton("2");
JButton b3=new JButton("3");
JButton b4=new JButton("4");
JButton b5=new JButton("5");
       
f.add(b1);f.add(b2);f.add(b3);f.add(b4);f.add(b5);

f.setLayout(new FlowLayout(FlowLayout.RIGHT));
//setting flow layout of right alignment

f.setSize(300,300);
f.setVisible(true);
}
public static void main(String[] args) {
new MyFlowLayout();
}
}