添加按钮或容器的布局约束确实让我感到困难。我在添加以下命令时遇到了以上错误。

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


我的按钮具有LayoutConstraint:West的属性。
当我将addCompnent按钮插入Container1时,出现了以上错误..

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

最佳答案

用:

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


如广告所示工作。

关于codenameone - 没有约束参数无法将组件添加到BorderLayout容器,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/14619934/

10-10 16:04