Merged code for bryfox: Re-add support for search & menu key triggers.

See original commit: https://github.com/bryfox/phonegap-android/commit/799515fa7b8b5ccc94487e519f520929104ade2c
This commit is contained in:
Bryce Curtis
2010-11-11 16:20:32 -06:00
parent 5ffe5fa3c5
commit 28ff6e1150
2 changed files with 25 additions and 19 deletions
+6 -2
View File
@@ -816,11 +816,15 @@ public class DroidGap extends PhonegapActivity {
}
}
if (keyCode == KeyEvent.KEYCODE_MENU) {
// This is where we launch the menu
// If menu key
else if (keyCode == KeyEvent.KEYCODE_MENU) {
appView.loadUrl("javascript:keyEvent.menuTrigger()");
}
// If search key
else if (keyCode == KeyEvent.KEYCODE_SEARCH) {
appView.loadUrl("javascript:keyEvent.searchTrigger()");
}
return false;
}