/development/samples/ApiDemos/res/menu/ |
title_only.xml | 17 <menu xmlns:android="http://schemas.android.com/apk/res/android"> 25 </menu>
|
order.xml | 17 <menu xmlns:android="http://schemas.android.com/apk/res/android"> 20 order them for the menu (they all have the same default category). --> 38 </menu>
|
/external/webkit/WebKitExamplePlugins/NetscapeCocoaPlugin/ |
MenuHandler.m | 70 // Create the menu 71 menu = [[NSMenu alloc] initWithTitle:@"Menu"]; 75 [menu addItem:item]; 80 [menu addItem:item]; 88 [menu release]; 94 - (NSMenu *)menu 96 return menu;
|
/packages/apps/AlarmClock/res/menu/ |
context_menu.xml | 17 <menu xmlns:android="http://schemas.android.com/apk/res/android"> 22 </menu>
|
/packages/apps/Bluetooth/res/menu/ |
transferhistory.xml | 17 <menu xmlns:android="http://schemas.android.com/apk/res/android"> 22 </menu>
|
transferhistorycontextfinished.xml | 17 <menu xmlns:android="http://schemas.android.com/apk/res/android"> 24 </menu>
|
/packages/apps/Browser/res/menu/ |
bookmarks.xml | 17 <menu xmlns:android="http://schemas.android.com/apk/res/android"> 23 </menu>
|
downloadhistory.xml | 17 <menu xmlns:android="http://schemas.android.com/apk/res/android"> 23 </menu>
|
downloadhistorycontextfailed.xml | 17 <menu xmlns:android="http://schemas.android.com/apk/res/android"> 22 </menu>
|
downloadhistorycontextfinished.xml | 17 <menu xmlns:android="http://schemas.android.com/apk/res/android"> 24 </menu>
|
downloadhistorycontextrunning.xml | 17 <menu xmlns:android="http://schemas.android.com/apk/res/android"> 22 </menu>
|
history.xml | 17 <menu xmlns:android="http://schemas.android.com/apk/res/android"> 21 </menu>
|
websitesettings.xml | 16 <menu xmlns:android="http://schemas.android.com/apk/res/android"> 20 </menu>
|
title_context.xml | 17 <menu xmlns:android="http://schemas.android.com/apk/res/android"> 18 <!-- These are for the context menu for the title bar. Note that we need a 26 </menu>
|
/packages/apps/Email/res/menu/ |
account_folder_list_smart_folder_context.xml | 17 <menu xmlns:android="http://schemas.android.com/apk/res/android"> 22 </menu>
|
debug_option.xml | 17 <menu xmlns:android="http://schemas.android.com/apk/res/android"> 20 </menu>
|
mailbox_list_context.xml | 17 <menu xmlns:android="http://schemas.android.com/apk/res/android"> 22 </menu>
|
/external/webkit/WebCore/manual-tests/ |
context-click-unfocused-frame.html | 12 %26ldquo;PASS%26rdquo; should appear. A contextual menu should not open.
|
secure-keyboard-enabled-after-submit.html | 10 1) Use System Preferences > International > Input Menu to enable a non-Roman 13 3) Check that non-Roman input sources are disabled in the Input menu (the flag 14 on the right side of the menu bar).<br> 18 menu.
|
keyboard-menukey-event.html | 4 <title>Menu key testing</title> 20 <li>Click the text input box below and press Menu key. 25 in this text and press Menu key.
|
/frameworks/base/test-runner/src/android/test/ |
TestListActivity.java | 24 import android.view.Menu; 49 /** "Mode" group in the menu. */ 50 static final int MODE_GROUP = Menu.FIRST; 61 /** "Regression" menu item */ 64 /** "Performance" menu item */ 67 /** "Profiling" menu item */ 171 public boolean onCreateOptionsMenu(Menu menu) { 172 super.onCreateOptionsMenu(menu); 173 mRegressionItem = menu.add(MODE_GROUP, -1, 0, "Regression Mode") [all...] |
/packages/apps/Stk/src/com/android/stk/ |
StkApp.java | 30 // Identifiers for option menu items 31 static final int MENU_ID_END_SESSION = android.view.Menu.FIRST; 32 static final int MENU_ID_BACK = android.view.Menu.FIRST + 1; 33 static final int MENU_ID_HELP = android.view.Menu.FIRST + 2;
|
/frameworks/base/docs/html/shareables/ |
icon_templates-v1.0.zip | |
/frameworks/base/tests/LocationTracker/src/com/android/locationtracker/ |
TrackerActivity.java | 32 import android.view.Menu; 52 * - enable/disable "start service" and "stop service" menu items as 75 * Builds the menu 77 * @param menu - menu to add items to 80 public boolean onCreateOptionsMenu(Menu menu) { 82 menuInflater.inflate(R.menu.menu, menu); [all...] |
/packages/apps/Calculator/src/com/android/calculator2/ |
Calculator.java | 25 import android.view.Menu; 90 public boolean onCreateOptionsMenu(Menu menu) { 91 super.onCreateOptionsMenu(menu); 94 item = menu.add(0, CMD_CLEAR_HISTORY, 0, R.string.clear_history); 97 item = menu.add(0, CMD_ADVANCED_PANEL, 0, R.string.advanced); 100 item = menu.add(0, CMD_BASIC_PANEL, 0, R.string.basic); 107 public boolean onPrepareOptionsMenu(Menu menu) { 108 super.onPrepareOptionsMenu(menu); [all...] |