I am using the MenuButton. On the Menu button, you can set the title and icon. However, icon is not appearing on the Menu button that shows up. I have the following code:
Clearly, I must be missing something basic. If anyone has a sample to use MenuButton, that would be great. Thanks in advance.
Code:
MenuButton newMenuButton = new MenuButton();
newMenuButton.setIcon("debugt_obj.gif");
newMenuButton.setWidth(80);
newMenuButton.setTitle("New");
// Set Menu
//newMenuButton.setMenu();
Comment