如何在LWUIT中设置按钮位置?
public void error()
{
error = new Dialog();
e = new Label("EMPTY FIELDS!!!");
t= new TextArea("You Can't Leave The Fields Empty...",8,13);
error.addComponent(e);
error.addComponent(t);
eok = new Button("Ok");
eok.setAlignment(Component.CENTER);
eok.addActionListener(this);
error.addComponent(eok);
error.show();
}
答案 0 :(得分:1)
您需要使用布局管理器。我猜你试图将按钮对中,而不是仅仅将它对准中心,只需将它添加到具有中心流布局的容器中:
Container c = new Container(new FlowLayout(Component.CENTER));
c.addComponent(btn);