Searched refs:menu (Results 76 - 83 of 83) sorted by relevance

1234

/frameworks/ex/common/java/com/android/ex/editstyledtext/
H A DEditStyledText.java181 * Strings for context menu. TODO: Extract the strings to strings.xml.
328 protected void onCreateContextMenu(ContextMenu menu) { argument
329 super.onCreateContextMenu(menu);
332 menu.add(0, ID_HORIZONTALLINE, 0, STR_HORIZONTALLINE).setOnMenuItemClickListener(
336 menu.add(0, ID_CLEARSTYLES, 0, STR_CLEARSTYLES)
340 menu.add(0, ID_PASTE, 0, STR_PASTE)
/frameworks/base/core/java/android/view/
H A DView.java85 import com.android.internal.view.menu.MenuBuilder;
913 * context menu.
2958 * Listener used to build the context menu.
4177 * Register a callback to be invoked when the context menu for this view is
4229 * Call this view's OnLongClickListener, if it is defined. Invokes the context menu if the
4269 * Bring up the context menu for this view.
4271 * @return Whether a context menu was displayed.
4278 * Bring up the context menu for this view, referring to the item under the specified point.
4283 * @return Whether a context menu was displayed.
6090 * context menu
7892 createContextMenu(ContextMenu menu) argument
7934 onCreateContextMenu(ContextMenu menu) argument
17537 onCreateContextMenu(ContextMenu menu, View v, ContextMenuInfo menuInfo) argument
[all...]
H A DViewRootImpl.java4659 public void createContextMenu(ContextMenu menu) { argument
/frameworks/base/core/java/android/widget/
H A DAbsListView.java6004 public boolean onCreateActionMode(ActionMode mode, Menu menu) { argument
6005 if (mWrapped.onCreateActionMode(mode, menu)) {
6013 public boolean onPrepareActionMode(ActionMode mode, Menu menu) { argument
6014 return mWrapped.onPrepareActionMode(mode, menu);
/frameworks/ex/chips/src/com/android/ex/chips/
H A DRecipientEditTextView.java1746 public boolean onPrepareActionMode(ActionMode mode, Menu menu) { argument
1754 public boolean onCreateActionMode(ActionMode mode, Menu menu) { argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DBaseStatusBar.java254 "init: icons=%d disabled=0x%08x lights=0x%08x menu=0x%08x imeButton=0x%08x",
357 R.menu.notification_popup_menu,
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/tablet/
H A DTabletStatusBar.java503 mMenuButton = mNavigationArea.findViewById(R.id.menu);
515 // ensure the menu button doesn't stick around on the status bar after it's been
1080 // Policy note: if the frontmost activity needs the menu key, we assume it is a legacy app
/frameworks/base/tools/aapt/
H A DResource.cpp177 || type == "color" || type == "menu" || type == "mipmap";
949 ASSIGN_IT(menu);
971 !applyFileOverlay(bundle, assets, &menus, "menu") ||
1078 err = makeFileResources(bundle, assets, &table, menus, "menu");
1209 ResourceDirIterator it(menus, String8("menu"));
2534 } else if ((dirName == String8("menu")) || (strncmp(dirName.string(), "menu-", 5) == 0)) {
2535 startTag = "menu";

Completed in 1682 milliseconds

1234