- AWT 教程
- AWT - 主页
- AWT - 概述
- AWT - 环境
- AWT - 控件
- AWT - 事件处理
- AWT - 事件类
- AWT - 事件侦听器
- AWT - 事件适配器
- AWT - 布局
- AWT - 容器
- AWT - 菜单
- AWT - 图形
- AWT 有用资源
- AWT - 快速指南
- AWT - 有用资源
- AWT - 讨论
AWT LayoutManager 接口
引言
接口LayoutManager用于定义知道如何布局容器的类的接口。
类声明
以下是java.awt.LayoutManager接口的声明
public interface LayoutManager
接口方法
序号 | 方法和说明 |
---|---|
1 | void addLayoutComponent(String name, Component comp) 如果布局管理器使用按组件的字符串,那么将组件 comp 添加到布局中,并将其与 name 指定的字符串关联。 |
2 | void layoutContainer(Container parent) 布局指定的容器。 |
3 | Dimension minimumLayoutSize(Container parent) 根据指定的容器中包含的组件,计算其最小尺寸。 |
4 | Dimension preferredLayoutSize(Container parent) 根据指定的容器中包含的组件,计算其首选尺寸。 |
5 | void removeLayoutComponent(Component comp) 从布局中删除指定的组件。 |
awt_layouts.htm
广告