Telephone communication How can I get the settings page from the application menu?

I am developing a phone conversation application and found that when I press the menu button on my phone, I see an option called “settings”.

The option that runs in the debugger when selected is as follows:

: D / DroidGap (12793): onMessage (onOptionsItemSelected, Settings)

Is there any possible way to connect this call to a page / parameterized request inside the application, something in the lines "settings.html" or "index.html? Page = settings"?

I tried to circumvent Google, but no luck. My application has just upgraded to version 2.0, but I don’t think it matters.

Update: This is an excerpt from my current implementation:

var onMenuKeyDown;
onMenuKeyDown = function(ev) {
  return $("#mainBox").html(ev.type);
};
document.addEventListener("menubutton", onMenuKeyDown, false);

, "mainBox" " html " menubutton ", , .

+5

All Articles