HomeSort by relevance Sort by last modified time
    Searched defs:itemId (Results 1 - 25 of 61) sorted by null

1 2 3

  /development/samples/devbytes/animation/ListViewRemovalAnimation/src/com/example/android/listviewremovalanimation/
ListViewRemovalAnimation.java 185 long itemId = mAdapter.getItemId(position);
186 mItemIdTopMap.put(itemId, child.getTop());
202 long itemId = mAdapter.getItemId(position);
203 Integer startTop = mItemIdTopMap.get(itemId);
  /frameworks/base/core/java/com/android/internal/view/menu/
SubMenuBuilder.java 127 final int itemId = mItem != null ? mItem.getItemId() : 0;
128 if (itemId == 0) {
131 return super.getActionViewStatesKey() + ":" + itemId;
  /frameworks/support/v7/appcompat/src/android/support/v7/internal/view/menu/
SubMenuBuilder.java 138 final int itemId = mItem != null ? mItem.getItemId() : 0;
139 if (itemId == 0) {
142 return super.getActionViewStatesKey() + ":" + itemId;
  /development/samples/WeatherListWidget/src/com/example/android/weatherlistwidget/
WeatherWidgetService.java 85 final int itemId = R.layout.widget_item;
86 RemoteViews rv = new RemoteViews(mContext.getPackageName(), itemId);
  /frameworks/base/tests/FrameworkPerf/src/com/android/frameworkperf/
SimpleInflater.java 128 int itemId = a.getResourceId(R.styleable.MenuItem_android_id, 0);
  /frameworks/support/v13/java/android/support/v13/app/
FragmentPagerAdapter.java 92 final long itemId = getItemId(position);
95 String name = makeFragmentName(container.getId(), itemId);
98 if (DEBUG) Log.v(TAG, "Attaching item #" + itemId + ": f=" + fragment);
102 if (DEBUG) Log.v(TAG, "Adding item #" + itemId + ": f=" + fragment);
104 makeFragmentName(container.getId(), itemId));
  /frameworks/support/v4/java/android/support/v4/app/
FragmentPagerAdapter.java 88 final long itemId = getItemId(position);
91 String name = makeFragmentName(container.getId(), itemId);
94 if (DEBUG) Log.v(TAG, "Attaching item #" + itemId + ": f=" + fragment);
98 if (DEBUG) Log.v(TAG, "Adding item #" + itemId + ": f=" + fragment);
100 makeFragmentName(container.getId(), itemId));
  /packages/services/Telephony/src/com/android/phone/
GsmUmtsAdditionalCallOptions.java 88 final int itemId = item.getItemId();
89 if (itemId == android.R.id.home) { // See ActionBar#setDisplayHomeAsUpEnabled()
RespondViaSmsManager.java 168 final int itemId = item.getItemId();
169 switch (itemId) {
GsmUmtsCallForwardOptions.java 174 final int itemId = item.getItemId();
175 if (itemId == android.R.id.home) { // See ActionBar#setDisplayHomeAsUpEnabled()
FdnSetting.java 481 final int itemId = item.getItemId();
482 if (itemId == android.R.id.home) { // See ActionBar#setDisplayHomeAsUpEnabled()
  /development/samples/ActionBarCompat/src/com/example/android/actionbarcompat/
ActionBarHelperBase.java 169 final int itemId = item.getItemId();
178 itemId == android.R.id.home
183 itemId == android.R.id.home
187 if (itemId == R.id.menu_refresh) {
257 int itemId;
268 itemId = parser.getAttributeResourceValue(MENU_RES_NAMESPACE,
270 if (itemId == 0) {
278 mActionItemIds.add(itemId);
  /development/samples/devbytes/animation/ListViewItemAnimations/src/com/example/android/listviewitemanimations/
ListViewItemAnimations.java 270 long itemId = mAdapter.getItemId(position);
272 mItemIdTopMap.put(itemId, child.getTop());
290 long itemId = mAdapter.getItemId(position);
291 Integer startTop = mItemIdTopMap.get(itemId);
  /external/chromium_org/ui/android/java/src/org/chromium/ui/autofill/
AutofillPopup.java 137 int itemId = suggestions[i].mUniqueId;
138 if (itemId > 0 || itemId == ITEM_ID_AUTOCOMPLETE_ENTRY ||
139 itemId == ITEM_ID_PASSWORD_ENTRY || itemId == ITEM_ID_DATA_LIST_ENTRY) {
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/
ItemLocationBox.java 158 public Item createItem(int itemId, int constructionMethod, int dataReferenceIndex, long baseOffset, List<Extent> extents) {
159 return new Item(itemId, constructionMethod, dataReferenceIndex, baseOffset, extents);
167 public int itemId;
174 itemId = IsoTypeReader.readUInt16(in);
195 public Item(int itemId, int constructionMethod, int dataReferenceIndex, long baseOffset, List<Extent> extents) {
196 this.itemId = itemId;
226 IsoTypeWriter.writeUInt16(bb, itemId);
254 if (itemId != item.itemId) return false
    [all...]
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/tester/android/view/
TestMenuItem.java 12 private int itemId;
25 public TestMenuItem(int itemId) {
27 this.itemId = itemId;
30 public void setItemId(int itemId) {
31 this.itemId = itemId;
36 return itemId;
  /frameworks/base/core/java/android/widget/
ShareActionProvider.java 290 final int itemId = item.getItemId();
291 Intent launchIntent = dataModel.chooseActivity(itemId);
  /frameworks/support/v7/appcompat/src/android/support/v7/widget/
ShareActionProvider.java 313 final int itemId = item.getItemId();
314 Intent launchIntent = dataModel.chooseActivity(itemId);
  /packages/apps/UnifiedEmail/src/com/android/mail/browse/
EmlViewerActivity.java 133 final int itemId = item.getItemId();
134 if (itemId == android.R.id.home) {
137 } else if (itemId == R.id.settings) {
139 } else if (itemId == R.id.help_info_menu_item) {
141 } else if (itemId == R.id.feedback_menu_item) {
  /packages/apps/UnifiedEmail/src/com/android/mail/photo/
MailPhotoViewActivity.java 193 final int itemId = item.getItemId();
194 if (itemId == android.R.id.home) {
198 } else if (itemId == R.id.menu_save) { // save the current photo
201 } else if (itemId == R.id.menu_save_all) { // save all of the photos
204 } else if (itemId == R.id.menu_share) { // share the current photo
207 } else if (itemId == R.id.menu_share_all) { // share all of the photos
210 } else if (itemId == R.id.menu_download_again) { // redownload the current photo
  /frameworks/base/core/java/android/view/
MenuInflater.java 260 private int itemId;
344 itemId = a.getResourceId(com.android.internal.R.styleable.MenuItem_id, defaultItemId);
451 setItem(menu.add(groupId, itemId, itemCategoryOrder, itemTitle));
456 SubMenu subMenu = menu.addSubMenu(groupId, itemId, itemCategoryOrder, itemTitle);
  /frameworks/support/v7/appcompat/src/android/support/v7/internal/view/
SupportMenuInflater.java 268 private int itemId;
352 itemId = a.getResourceId(R.styleable.MenuItem_android_id, defaultItemId);
462 setItem(menu.add(groupId, itemId, itemCategoryOrder, itemTitle));
467 SubMenu subMenu = menu.addSubMenu(groupId, itemId, itemCategoryOrder, itemTitle);
  /frameworks/support/v7/mediarouter/src/android/support/v7/media/
RemotePlaybackClient.java 322 * @param itemId The item id.
335 public void seek(String itemId, long positionMillis, Bundle extras,
337 if (itemId == null) {
338 throw new IllegalArgumentException("itemId must not be null");
344 performItemAction(intent, mSessionId, itemId, extras, callback);
356 * @param itemId The item id.
367 public void getStatus(String itemId, Bundle extras, ItemActionCallback callback) {
368 if (itemId == null) {
369 throw new IllegalArgumentException("itemId must not be null");
374 performItemAction(intent, mSessionId, itemId, extras, callback)
    [all...]
  /packages/apps/ContactsCommon/src/com/android/contacts/common/list/
PhoneNumberPickerFragment.java 166 final int itemId = item.getItemId();
167 if (itemId == android.R.id.home) { // See ActionBar#setDisplayHomeAsUpEnabled()
  /packages/apps/Exchange/src/com/android/exchange/
EasOutboxService.java 235 OriginalMessageInfo(long refId, String itemId, String collectionId) {
237 mItemId = itemId;
245 sb.append("&ItemId=");
262 // Note: itemId and collectionId are the terms used by EAS to refer to the serverId and
264 String itemId = null;
279 itemId = cols[0];
289 // We need either a longId or both itemId (serverId) and collectionId (mailboxId) to process
291 if (itemId != null && collectionId != null){
292 return new OriginalMessageInfo(refId, itemId, collectionId);
424 // In EAS 14, we don't send itemId and collectionId in the comman
    [all...]

Completed in 1484 milliseconds

1 2 3