Searched refs:menu (Results 151 - 168 of 168) sorted by relevance

1234567

/frameworks/support/v7/appcompat/src/android/support/v7/internal/view/menu/
H A DActionMenuItem.java17 package android.support.v7.internal.view.menu;
H A DListMenuItemView.java17 package android.support.v7.internal.view.menu;
H A DActionMenuItemView.java17 package android.support.v7.internal.view.menu;
H A DMenuItemWrapperICS.java17 package android.support.v7.internal.view.menu;
238 // Make framework menu item inflate the view
/frameworks/base/packages/SystemUI/src/com/android/systemui/tuner/
H A DQsTuner.java79 public void onCreateOptionsMenu(Menu menu, MenuInflater inflater) { argument
80 menu.add(0, MENU_RESET, 0, com.android.internal.R.string.reset);
/frameworks/support/v4/java/android/support/v4/app/
H A DShareCompat.java214 * a standard activity chooser dialog for the menu item.</p>
220 * on API level 11 or above and uses the Action Bar its menu will be recreated and rebuilt.
222 * the next time the user presses the menu key to open the options menu panel. The activity
224 * the share menu item.</li>
237 * Configure a menu item to act as a sharing action.
239 * @param menu Menu containing the item to use for sharing
240 * @param menuItemId ID of the share item within menu
244 public static void configureMenuItem(Menu menu, int menuItemId, IntentBuilder shareIntent) { argument
245 MenuItem item = menu
[all...]
H A DFragmentManager.java2066 public boolean dispatchCreateOptionsMenu(Menu menu, MenuInflater inflater) { argument
2073 if (f.performCreateOptionsMenu(menu, inflater)) {
2098 public boolean dispatchPrepareOptionsMenu(Menu menu) { argument
2104 if (f.performPrepareOptionsMenu(menu)) {
2141 public void dispatchOptionsMenuClosed(Menu menu) { argument
2146 f.performOptionsMenuClosed(menu);
/frameworks/base/core/java/com/android/internal/view/menu/
H A DActionMenuItemView.java17 package com.android.internal.view.menu;
/frameworks/base/core/tests/coretests/src/android/view/
H A DMenuTest.java19 import com.android.internal.view.menu.MenuBuilder;
73 // 1. Create a grouped item in the menu
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
H A DCatService.java676 buf.write(menuId); // menu identifier chosen
918 private boolean removeMenu(Menu menu) { argument
920 if (menu.items.size() == 1 && menu.items.get(0) == null) {
/frameworks/base/core/java/android/app/
H A DFragmentManager.java355 * Invalidate the attached activity's options menu as necessary.
2020 public boolean dispatchCreateOptionsMenu(Menu menu, MenuInflater inflater) { argument
2027 if (f.performCreateOptionsMenu(menu, inflater)) {
2052 public boolean dispatchPrepareOptionsMenu(Menu menu) { argument
2058 if (f.performPrepareOptionsMenu(menu)) {
2095 public void dispatchOptionsMenuClosed(Menu menu) { argument
2100 f.performOptionsMenuClosed(menu);
/frameworks/opt/photoviewer/src/com/android/ex/photo/
H A DPhotoViewController.java386 public boolean onCreateOptionsMenu(Menu menu) { argument
390 public boolean onPrepareOptionsMenu(Menu menu) { argument
/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.java107 import com.android.internal.view.menu.MenuBuilder;
984 * context menu.
3447 * Listener used to build the context menu.
5178 * Register a callback to be invoked when the context menu for this view is
5232 * Call this view's OnLongClickListener, if it is defined. Invokes the context menu if the
5293 * Bring up the context menu for this view.
5295 * @return Whether a context menu was displayed.
5302 * Bring up the context menu for this view, referring to the item under the specified point.
5307 * @return Whether a context menu was displayed.
7824 * context menu
9992 createContextMenu(ContextMenu menu) argument
10034 onCreateContextMenu(ContextMenu menu) argument
21372 onCreateContextMenu(ContextMenu menu, View v, ContextMenuInfo menuInfo) argument
[all...]
H A DViewRootImpl.java6324 public void createContextMenu(ContextMenu menu) { argument
/frameworks/opt/chips/src/com/android/ex/chips/
H A DRecipientEditTextView.java2006 public boolean onPrepareActionMode(ActionMode mode, Menu menu) { argument
2014 public boolean onCreateActionMode(ActionMode mode, Menu menu) { argument
/frameworks/base/core/java/android/widget/
H A DAbsListView.java6250 public boolean onCreateActionMode(ActionMode mode, Menu menu) { argument
6251 if (mWrapped.onCreateActionMode(mode, menu)) {
6260 public boolean onPrepareActionMode(ActionMode mode, Menu menu) { argument
6261 return mWrapped.onPrepareActionMode(mode, menu);
/frameworks/base/tools/aapt/
H A DResource.cpp221 || type == "color" || type == "menu" || type == "mipmap";
1224 ASSIGN_IT(menu);
1247 !applyFileOverlay(bundle, assets, &menus, "menu") ||
1361 err = makeFileResources(bundle, assets, &table, menus, "menu");
1516 ResourceDirIterator it(menus, String8("menu"));
3066 } else if ((dirName == String8("menu")) || (strncmp(dirName.string(), "menu-", 5) == 0)) {
3067 startTags.add(String8("menu"));

Completed in 993 milliseconds

1234567