按钮lWUIT j2me setlocation

时间:2011-07-08 05:39:54

标签: java java-me lwuit

如何在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();
  }

1 个答案:

答案 0 :(得分:1)

您需要使用布局管理器。我猜你试图将按钮对中,而不是仅仅将它对准中心,只需将它添加到具有中心流布局的容器中:

Container c = new Container(new FlowLayout(Component.CENTER));
c.addComponent(btn);