View Single Post
Old 03-20-2009, 10:35 AM   #2
CJLopez
Thumbs Must Hurt
 
Join Date: May 2008
Model: 8700
PIN: N/A
Carrier: Telcel
Posts: 69
Default

easy, before you push your main screen, add the hManager. Something like this
PHP Code:
public class mainScreenSample extends MainScreen
{
    public 
mainScreenSample()
    {
        .
        .
        .
        .
        
add(new Field());
        
add(new Field());
        
add(new Field());
        
add(new Field());
        
add(hManaeger);
        .
        .
        .
        .
        
pushScreen(this);
    }

This way, you'll be adding your manager until the end of the MainScreen and it will be on the botom of it

You could also create a layout Manager of the form and in it you ad the fields and indicates the priority of the field, where the priority the lowest number is the greatest priority but the way i put it is the easiest to have your hManager on the botom of the MainScreen
Offline   Reply With Quote