Show android options menu.
[android] [crodova cli] [xdk]
This is open source cordova plugin.
You can see Cordova Plugins in one page: http://cranberrygame.github.io?referrer=github
https://cordova.apache.org/docs/en/edge/guide_cli_index.md.html#The%20Command-Line%20Interface - npm install -g [email protected]
cordova plugin add cordova-plugin-optionsmenu
https://software.intel.com/en-us/intel-xdk - Download XDK - XDK PORJECTS - [specific project] - CORDOVA HYBRID MOBILE APP SETTINGS - Plugin Management - Add Plugins to this Project - Third Party Plugins -
Plugin Source: Cordova plugin registry
Plugin ID: cordova-plugin-optionsmenu
https://cocoon.io - Create project - [specific project] - Setting - Plugins - Custom - Git Url: https://github.com/cranberrygame/cordova-plugin-optionsmenu.git - INSTALL - Save
https://build.phonegap.com/ - Apps - [specific project] - Update code - Zip file including config.xml
<gap:plugin name="cordova-plugin-optionsmenu" source="npm" />
Download construct2 plugin
https://dl.dropboxusercontent.com/u/186681453/pluginsforcordova/index.html
How to install c2 native plugins in xdk, cocoon and cordova cli
https://plus.google.com/102658703990850475314/posts/XS5jjEApJYV
//
var menus = "menu1,menu2,menu3,menu4,menu5,menu6,menu7";
//
document.addEventListener("deviceready", function(){
window.optionsmenu.setUp();
//callback
window.optionsmenu.onMenuSelected = function(menu) {
window.alert(menu);
};
}, false);
//
window.optionsmenu.setMenus(menus);
window.optionsmenu.showMenus();
Cordova Plugins
http://cranberrygame.github.io?referrer=github