Searched refs:itemId (Results 1 - 25 of 53) sorted by relevance

123

/packages/apps/UnifiedEmail/src/com/android/mail/ui/
H A DAccountFeedbackActivity.java111 final int itemId = item.getItemId();
112 if (itemId == android.R.id.home) {
114 } else if (itemId == R.id.settings) {
116 } else if (itemId == R.id.help_info_menu_item) {
H A DHelpFragment.java103 final int itemId = item.getItemId();
104 if (itemId == android.R.id.home) {
110 } else if (itemId == R.id.view_app_url) {
113 } else if (itemId == R.id.print_dialog) {
116 } else if (itemId == R.id.copyright_information) {
119 } else if (itemId == R.id.open_source_licenses) {
122 } else if (itemId == R.id.privacy_policy) {
H A DAbstractConversationViewFragment.java375 final int itemId = item.getItemId();
376 if (itemId == R.id.inside_conversation_unread || itemId == R.id.toggle_read_unread) {
378 } else if (itemId == R.id.read) {
381 } else if (itemId == R.id.show_original) {
383 } else if (itemId == R.id.print_all) {
385 } else if (itemId == R.id.reply) {
387 } else if (itemId == R.id.reply_all) {
/packages/apps/UnifiedEmail/src/com/android/mail/browse/
H A DSelectedConversationsActionMenu.java123 final int itemId = item.getItemId();
125 Analytics.getInstance().sendMenuItemEvent(Analytics.EVENT_CATEGORY_MENU_ITEM, itemId,
129 if (itemId == R.id.delete) {
132 } else if (itemId == R.id.discard_drafts) {
135 } else if (itemId == R.id.discard_outbox) {
138 } else if (itemId == R.id.archive) {
141 } else if (itemId == R.id.remove_folder) {
145 } else if (itemId == R.id.mute) {
148 } else if (itemId == R.id.report_spam) {
151 } else if (itemId
[all...]
H A DEmlMessageViewFragment.java198 final int itemId = item.getItemId();
199 if (itemId == R.id.print_message) {
/packages/apps/DeskClock/src/com/android/deskclock/actionbarmenu/
H A DActionBarMenuManager.java99 final int itemId = item.getItemId();
100 return mControllers.get(itemId).handleMenuItemClick(item);
/packages/services/Telephony/src/com/android/phone/
H A DGsmUmtsCallOptions.java55 final int itemId = item.getItemId();
56 if (itemId == android.R.id.home) {
H A DCdmaCallOptions.java70 final int itemId = item.getItemId();
71 if (itemId == android.R.id.home) {
H A DGsmUmtsAdditionalCallOptions.java96 final int itemId = item.getItemId();
97 if (itemId == android.R.id.home) { // See ActionBar#setDisplayHomeAsUpEnabled()
H A DGsmUmtsCallForwardOptions.java183 final int itemId = item.getItemId();
184 if (itemId == android.R.id.home) { // See ActionBar#setDisplayHomeAsUpEnabled()
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/settings/
H A DSettingsFragment.java63 menu.add(NO_MENU_GROUP, MENU_HELP_AND_FEEDBACK /* itemId */,
68 menu.add(NO_MENU_GROUP, MENU_ABOUT /* itemId */, MENU_ABOUT /* order */, aboutResId);
80 final int itemId = item.getItemId();
81 if (itemId == MENU_HELP_AND_FEEDBACK) {
85 if (itemId == MENU_ABOUT) {
H A DCustomInputStyleSettingsFragment.java307 final int itemId = item.getItemId();
308 if (itemId == R.id.action_add_style) {
/packages/apps/UnifiedEmail/src/com/android/mail/photo/
H A DMailPhotoViewController.java136 final int itemId = item.getItemId();
138 Analytics.getInstance().sendMenuItemEvent(Analytics.EVENT_CATEGORY_MENU_ITEM, itemId,
141 if (itemId == android.R.id.home) {
144 } else if (itemId == R.id.menu_save) { // save the current photo
146 } else if (itemId == R.id.menu_save_all) { // save all of the photos
148 } else if (itemId == R.id.menu_share) { // share the current photo
150 } else if (itemId == R.id.menu_share_all) { // share all of the photos
152 } else if (itemId == R.id.menu_print) { // print the current photo
154 } else if (itemId == R.id.menu_download_again) { // redownload the current photo
156 } else if (itemId
[all...]
/packages/apps/Dialer/src/com/android/dialer/list/
H A DSpeedDialFragment.java363 final long itemId = mContactTileAdapter.getItemId(position);
365 Log.d(TAG, "Saving itemId: " + itemId + " for listview child " + i + " Top: "
368 mItemIdTopMap.put(itemId, child.getTop());
369 mItemIdLeftMap.put(itemId, child.getLeft());
405 final long itemId = mContactTileAdapter.getItemId(position);
407 if (containsId(idsInPlace, itemId)) {
412 Integer startTop = mItemIdTopMap.get(itemId);
413 Integer startLeft = mItemIdLeftMap.get(itemId);
436 Log.d(TAG, "Found itemId
[all...]
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/editors/
H A DEditorCrop.java117 private void changeCropAspect(int itemId) { argument
118 AspectInfo info = sAspects.get(itemId);
120 throw new IllegalArgumentException("Invalid resource ID: " + itemId);
122 if (itemId == R.id.crop_menu_original) {
124 } else if (itemId == R.id.crop_menu_none) {
/packages/apps/Launcher3/src/com/android/launcher3/
H A DCommonAppTypeParser.java60 public CommonAppTypeParser(long itemId, int itemType, Context context) { argument
61 mItemId = itemId;
/packages/services/Telecomm/src/com/android/server/telecom/
H A DRespondViaSmsSettings.java115 final int itemId = item.getItemId();
116 switch (itemId) {
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/ui/
H A DFramedTextButton.java61 public void setTextFrom(int itemId) { argument
62 switch (itemId) {
/packages/apps/Settings/src/com/android/settings/inputmethod/
H A DSpellCheckersSettings.java197 final int itemId = convertSubtypeIndexToDialogItemId(index);
198 items[itemId] = getSpellCheckerSubtypeLabel(currentSci, subtype);
200 checkedItemId = itemId;
/packages/apps/UnifiedEmail/src/com/android/mail/ui/settings/
H A DGeneralPrefsFragment.java99 final int itemId = item.getItemId();
100 if (itemId == R.id.clear_search_history_menu_item) {
103 } else if (itemId == R.id.clear_picture_approvals_menu_item) {
/packages/apps/Calendar/src/com/android/calendar/
H A DSearchActivity.java278 final int itemId = item.getItemId();
279 if (itemId == R.id.action_today) {
284 } else if (itemId == R.id.action_search) {
286 } else if (itemId == R.id.action_settings) {
289 } else if (itemId == android.R.id.home) {
/packages/experimental/LoaderApp/src/com/android/loaderapp/
H A DHomeXLarge.java113 public boolean onNavigationItemSelected(int itemPosition, long itemId) { argument
/packages/apps/Gallery2/src/com/android/gallery3d/ui/
H A DSelectionManager.java107 public boolean isItemSelected(Path itemId) { argument
108 return mInverseSelection ^ mClickedSet.contains(itemId);
/packages/apps/Stk/src/com/android/stk/
H A DStkMenuActivity.java480 private void sendResponse(int resId, int itemId, boolean help) { argument
481 CatLog.d(LOG_TAG, "sendResponse resID[" + resId + "] itemId[" + itemId +
488 args.putInt(StkAppService.MENU_SELECTION, itemId);
/packages/apps/ContactsCommon/src/com/android/contacts/common/list/
H A DPhoneNumberPickerFragment.java180 final int itemId = item.getItemId();
181 if (itemId == android.R.id.home) { // See ActionBar#setDisplayHomeAsUpEnabled()

Completed in 858 milliseconds

123