AWT
AWT 教學首頁
AWT 概述介紹
AWT 環境設置
AWT控件(Controls)
AWT Component類
AWT Label類
AWT Button類
AWT CheckBox類
AWT CheckBoxGroup類
AWT List類
AWT TextField類
AWT TextArea類
AWT Choice類
AWT Canvas類
AWT Image類
AWT Scrollbar類
AWT Dialog類
AWT FileDialog類
AWT事件處理
AWT Event類
AWT AWTEvent類
AWT ActionEvent類
AWT InputEvent類
KeyEvent類
AWT MouseEvent類
TextEvent類
AWT WindowEvent類
AWT AdjustmentEvent類
AWT ComponentEvent類
AWT ContainerEvent類
AWT MouseMotionEvent類
AWT PaintEvent類
AWT 事件監聽器(Event Listeners)
AWT ActionListener接口
ComponentListener接口
ItemListener接口
KeyListener 接口
MouseListener 接口
TextListener 接口
WindowListener 接口
AdjustmentListener 接口
ContainerListener 接口
MouseMotionListener 接口
FocusListener 接口
AWT 適配器(Adapters)
KeyAdapter類
MouseAdapter 類
MouseMotionAdapter 類
WindowAdapter 類
AWT 佈局(Layouts)
LayoutManager 接口
LayoutManager2 接口
AWT BorderLayout
AWT CardLayout
AWT FlowLayout
AWTGridLayout
AWT GridBagLayout
AWT 容器(Containers)
AWT Container類
Panel類
Frame類
AWT Window類
AWT菜單控制
AWT MenuComponent類
AWT MenuBar類
AWT MenuItem類
AWT CheckboxMenuItem類
AWT PopupMenu類
AWT Menu類
AWT圖形控件
AWT Graphics2D類
AWT Arc2D類
AWT CubicCurve2D類
AWT Ellipse2D類
AWT Rectangle2D類
AWT QuadCurve2D類
AWT Line2D類
AWT Font類
AWT Color類
AWT BasicStroke類
LayoutManager2 接口
介紹
是用來定義的接口的類知道如何佈置根據佈局約束對象的容器的接口LayoutManger。
類的聲明
以下是聲明的java.awt.LayoutManager2接口:
public interface LayoutManger2 extends LayoutManager
接口中的方法
S.N.
方法和說明
1
void addLayoutComponent(Component comp, Object constraints)
Adds the specified component to the layout, using the specified constraint object.
2
float getLayoutAlignmentX(Container target)
Returns the alignment along the x axis.
3
float getLayoutAlignmentY(Container target)
Returns the alignment along the y axis.
4
void invalidateLayout(Container target)
Invalidates the layout, indicating that if the layout manager has cached information it should be discarded.
5
Dimension maximumLayoutSize(Container target)
Calculates the maximum size dimensions for the specified container, given the components it contains.