LayoutManager2
优质
小牛编辑
137浏览
2023-12-01
介绍 (Introduction)
接口LayoutManager用于为知道如何基于布局约束对象布置容器的类定义接口。
Class 声明 (Class Declaration)
以下是java.awt.LayoutManager2接口的声明 -
public interface LayoutManger2
extends LayoutManager
接口方法
Sr.No. | 方法和描述 |
---|---|
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) 在给定组件包含的组件的情况下,计算指定容器的最大大小尺寸。 |