Hello! (my first post on stackoverflow)
You need to use the component PopupList com.nokia.mid.ui. No problem with this with LWUIT.
Popuplist javadoc
As you can see in javadoc. This is an example:
PopupList list1 = new PopupList(); PopupListItem item1 = new PopupListItem("Item1"); PopupListItem item2 = new PopupListItem("Item1", image1); list1.appendItem(item1); list1.appendItem(item2); list1.setVisible(true);
The position of the menu will be useful for your purpose.
source share