SWING - LayoutManager2 接口
简介
LayoutManager 接口用于为知道如何基于布局约束对象布局容器的类定义接口。
类声明
以下是 java.awt.LayoutManager2 接口的声明 −
public interface LayoutManger2 extends LayoutManager
接口方法
序号 | 方法 & 描述 |
---|---|
1 |
void addLayoutComponent(Component comp, Object constraints) 使用指定的约束对象将指定的组件添加到布局中。 |
2 |
float getLayoutAlignmentX(Container target) 返回沿 x 轴的对齐方式。 |
3 |
float getLayoutAlignmentY(Container target) 返回沿 y 轴的对齐方式。 |
4 |
void invalidateLayout(Container target) 使布局无效,指示如果布局管理器缓存了信息,则应将其丢弃。 |
5 |
Dimension maximumLayoutSize(Container target) 给定容器包含的组件,计算指定容器的最大尺寸尺寸。 |