I'm having problems removing all spaces and gaps between placed elements in the BoxLayout in LWUIT, i tried
Container toolbar = new Container(new BoxLayout(BoxLayout.X_AXIS));
toolbar.getStyle().setPadding(0, 0, 0, 0);
toolbar.getStyle().setMargin(0, 0, 0, 0);
with no luck, there is always a small gap between placed elements. How can I do this?
Appreciate the help.