From 0cde8819cfdfa7df03639b9d3b24f7d2933dee1a Mon Sep 17 00:00:00 2001 From: Marcel Kinard Date: Fri, 29 Aug 2014 18:07:29 -0400 Subject: [PATCH] CB-7410 fix the menu test Need to show the title in order for the options menu button to be visible. --- test/assets/www/menus/index.html | 2 +- test/src/org/apache/cordova/test/menus.java | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/test/assets/www/menus/index.html b/test/assets/www/menus/index.html index 58d64c34..ff0b93bf 100755 --- a/test/assets/www/menus/index.html +++ b/test/assets/www/menus/index.html @@ -33,7 +33,7 @@

Deviceready:  

-

The menu items should be:

+

The options menu items should be:

  • Item1
  • Item2
  • Item3
    diff --git a/test/src/org/apache/cordova/test/menus.java b/test/src/org/apache/cordova/test/menus.java index 12d5230f..6d0d3f1a 100755 --- a/test/src/org/apache/cordova/test/menus.java +++ b/test/src/org/apache/cordova/test/menus.java @@ -28,10 +28,12 @@ import android.view.ContextMenu.ContextMenuInfo; import org.apache.cordova.*; import org.apache.cordova.LOG; -public class menus extends DroidGap { +public class menus extends CordovaActivity { @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); + // need the title to be shown for the options menu to be visible + preferences.set("showTitle", true); super.init(); super.registerForContextMenu(super.appView); super.loadUrl("file:///android_asset/www/menus/index.html");