I have a FR630 and i'd like to use the default menu's in an connectiq app i am coding, like the menu's which are in the FR firmware itself. The nice thing in the normal menu is that apart from the menu item text, there are also icons and values. e.g.:
- when you press menu on the normal clock. You will see the word clock, but also an icon of a clock.
- When you hit that menu item, you will see the text "watchface", but also a subline at that menu item stating the current selected menu item.
If i look at the API, i only see something like:
[FONT="Lucida Sans"]function onMenu() {
var menu = new WatchUi.Menu();
var delegate;
menu.setTitle("My Menu");
menu.addItem("Item One", :one);
menu.addItem("Item Two", :two);
delegate = new MyMenuDelegate(); // a WatchUi.MenuInputDelegate
WatchUi.pushView(menu, delegate, WatchUi.SLIDE_IMMEDIATE);
return true;
}[/FONT]
This menu.additem only allows for an item text, not an icon and also not a subvalue.
Does anyone know how I can add this to a custom coded menu?
KR ARnold
(PS i know the menu2 has more functionalities, but this a FR630. So this class is not available)