Hi, That's not possible without wrapping BoxLayout-Y with a BorderLayout Container and having c at the South position.
White space will still be at the top since BorderLayout fills whole screen height and the BoxLayout-Y will become scrollable when the screen height is filled up by it's content. Container c = new Container(BoxLayout.y()); c.setScrollableY(true); Container wrapper = BorderLayout.south(c); Then wherever you initially placed container c, replace it with wrapper and continue adding your labels to c -- You received this message because you are subscribed to the Google Groups "CodenameOne Discussions" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. Visit this group at https://groups.google.com/group/codenameone-discussions. To view this discussion on the web visit https://groups.google.com/d/msgid/codenameone-discussions/cdd7cc30-ae2b-4dd2-8391-08cf29a02ff8%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
