create two VerticalFieldManagers with NO_VERTICAL_SCROLL (your listfield is scrollable), override in the first one (top)
Code:
protected void sublayout(int maxWidth, int maxHeight)
{
super.sublayout(maxWidth, maxHeight);
setExtent(maxWidth, maxHeight/2);
}
add a separator
if you want the second manager (bottom) to fill the rest of the screen override sublayout with
Code:
protected void sublayout(int maxWidth, int maxHeight)
{
super.sublayout(maxWidth, maxHeight);
setExtent(maxWidth, maxHeight);
}
add them to your main screen