I'm using an EyelidFieldManager
on a MainScreen
of my Blackberry app. Here is the code
EyelidFieldManager manager = new EyelidFieldManager();
HorizontalFieldManager buttonFieldSet = new HorizontalFieldManager(USE_ALL_WIDTH);
buttonFieldSet.addAll(new ButtonField[] {new ButtonField("One"), new ButtonField("Two"), new ButtonField("Three")});
manager.addBottom(buttonFieldSet);
manager.setEyelidDisplayTime(3000);
add(manager);
Nothing gets shown at the bottom of the screen but when I change the line manager.addBottom(buttonFieldSet)
to manager.addTop(buttonFieldSet)
the HorizontalFieldManager
gets displayed at the Top.
Why does this happen? Why is the EyelidFieldManager
able to show the HorizontalFieldManager
when it's docked at the top but not when its docked at the bottom.