如果没有约束参数,则无法将组件添加到BorderLayout Container

时间:2013-01-31 06:43:45

标签: codenameone

我对添加按钮或容器的布局约束感到困难。我在添加以下顺序时遇到了上述错误。

Container1.setLayout(new BorderLayout()); // Container1 has Borderlayout as Layout Property .

My Button具有LayoutConstraint:West的属性。 当我将ComponentCompnent按钮添加到Container1时,我得到了上述错误..

请建议我如何设置LayoutConstraint属性..

1 个答案:

答案 0 :(得分:6)

使用:

 Container1.setLayout(new BorderLayout());
 Container1.addComponent(BorderLayout.EAST, myComponent);

按宣传方式工作。