mForm.addComponent(新标签(“some text”));
我想在屏幕上居中对齐我的文字。
我该怎么办呢?我正在使用LWUIT 1.4。
答案 0 :(得分:4)
为此使用BorderLayout。
Form mForm = new Form();
mForm.setLayout(new BorderLayout());
mForm.addComponent(BorderLayout.CENTER, new Label("some text"));
有关详细信息,请参阅此example。