04-11-2008, 01:28 PM
|
#1 (permalink)
|
| New Member
Join Date: Mar 2008 Model: 8800 PIN: N/A Carrier: att
Posts: 5
Post Thanks: 0 Thanked 0 Times in 0 Posts
| objectchoicefield and "change option" menuItem focus Please Login to Remove! Hi,
I have multiple an objectchoicefield, and override the makeMenu function to add menuItems myself. I finally figured out how to add the "change option" item into the menu, however, when the menu comes up, the focus is not at the highest priority or ordinal menu item, instead it focused on the other menu item I have. Can someone please help!
Code:
import net.rim.device.api.ui.*;
import net.rim.device.api.ui.component.*;
import net.rim.device.api.ui.container.*;
import net.rim.device.api.system.*;
import net.rim.device.api.i18n.*;
public class test extends MainScreen
{
public test()
{
String projectChoices[] = {"11th Street Painting", "12th Street Office", "1st Ave Restaurant"};
ObjectChoiceField projectOCF = new ObjectChoiceField ("Project: ", projectChoices, 0, FIELD_RIGHT);
add(projectOCF);
}
private MenuItem _doneItem = new MenuItem("Done", 10, 10)
{
public void run()
{
while(UiApplication.getUiApplication().getActiveSc reen() != null)
{
UiApplication.getUiApplication().popScreen(UiAppli cation.getUiApplication().getActiveScreen());
}
UiApplication.getUiApplication().pushScreen(new HomeScreen());
}
};
protected void makeMenu( Menu menu, int instance )
{
MenuItem defaultItem = menu.getDefault();
defaultItem.setOrdinal(1);
defaultItem.setPriority(1);
menu.deleteAll();
menu.add(defaultItem);
menu.add(_doneItem);
}
}
Last edited by suspiration : 04-11-2008 at 01:32 PM.
|
| Offline
| |