HomeSort by relevance Sort by last modified time
    Searched refs:mDropView (Results 1 - 2 of 2) sorted by null

  /packages/apps/Launcher2/src/com/android/launcher2/
DragLayer.java 66 private DragView mDropView = null;
619 int xPos = x - mDropView.getScrollX() + (mAnchorView != null
621 int yPos = y - mDropView.getScrollY();
623 mDropView.setTranslationX(xPos);
624 mDropView.setTranslationY(yPos);
625 mDropView.setScaleX(scaleX);
626 mDropView.setScaleY(scaleY);
627 mDropView.setAlpha(alpha);
642 mDropView = view;
643 mDropView.cancelAnimation()
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/
DragLayer.java 73 @Thunk DragView mDropView = null;
744 int xPos = x - mDropView.getScrollX() + anchorAdjust;
745 int yPos = y - mDropView.getScrollY();
747 mDropView.setTranslationX(xPos);
748 mDropView.setTranslationY(yPos);
749 mDropView.setScaleX(scaleX);
750 mDropView.setScaleY(scaleY);
751 mDropView.setAlpha(alpha);
765 mDropView = view;
766 mDropView.cancelAnimation()
    [all...]

Completed in 544 milliseconds