Home | History | Annotate | Download | only in launcher2

Lines Matching refs:item

75     // The degree to which the item in the back of the stack is scaled [0...1]
292 private boolean willAcceptItem(ItemInfo item) {
293 final int itemType = item.itemType;
296 !mFolder.isFull() && item != mInfo && !mInfo.opened);
300 final ItemInfo item = (ItemInfo) dragInfo;
301 return !mFolder.isDestroyed() && willAcceptItem(item);
304 public void addItem(ShortcutInfo item) {
305 mInfo.add(item);
330 // This will animate the first item from it's position as an icon into its
331 // position as the first item in the preview
344 // This will animate the first item from it's position as an icon into its
345 // position as the first item in the preview
358 private void onDrop(final ShortcutInfo item, DragView animateView, Rect finalRect,
361 item.cellX = -1;
362 item.cellY = -1;
403 addItem(item);
404 mHiddenItems.add(item);
405 mFolder.hideItem(item);
408 mHiddenItems.remove(item);
409 mFolder.showItem(item);
414 addItem(item);
419 ShortcutInfo item;
422 item = ((ApplicationInfo) d.dragInfo).makeShortcut();
424 item = (ShortcutInfo) d.dragInfo;
427 onDrop(item, d.dragView, null, 1.0f, mInfo.contents.size(), d.postAnimationRunnable, d);
627 public void onAdd(ShortcutInfo item) {
632 public void onRemove(ShortcutInfo item) {