In LWUIT, I have a form that has around 4 horizontal lists. The lists' horizontal scrolling words perfectly.
However, when I want to scroll vertically up and down the form, it just ends up scrolling horizontally whichever list where the swipe begins, even though I'm swiping up and down and not left and right.
Is there any way to fix this?
Edit: This is my layout for the form:
this.setLayout(new BoxLayout(BoxLayout.Y_AXIS));
this.setScrollableY(true);