HomeSort by relevance Sort by last modified time
    Searched full:dragview (Results 1 - 10 of 10) sorted by null

  /packages/apps/Launcher2/src/com/android/launcher2/
DropTarget.java 44 public DragView dragView = null;
79 * @param dragView The DragView that's being dragged around on screen.
103 * @param dragView The DragView that's being dragged around on screen.
121 * @param dragView The DragView that's being dragged around on screen.
DragLayer.java 411 public void animateViewIntoPosition(DragView dragView, final View child) {
412 animateViewIntoPosition(dragView, child, null);
415 public void animateViewIntoPosition(DragView dragView, final int[] pos, float scale,
418 getViewRectRelativeToSelf(dragView, r);
422 animateViewIntoPosition(dragView, fromX, fromY, pos[0], pos[1], scale,
426 public void animateViewIntoPosition(DragView dragView, final View child,
428 animateViewIntoPosition(dragView, child, -1, onFinishAnimationRunnable)
    [all...]
ButtonDropTarget.java 74 d.dragView.setPaint(mHoverPaint);
82 d.dragView.setPaint(null);
DeleteDropTarget.java 172 dragLayer.getViewRectRelativeToSelf(d.dragView, from);
181 int xOffset = (int) -(d.dragView.getMeasuredWidth() - width) / 2;
182 int yOffset = (int) -(d.dragView.getMeasuredHeight() - height) / 2;
194 dragLayer.animateView(d.dragView, from, to, 0.1f, 0.1f,
DragController.java 91 /** The window token used as the parent for the DragView. */
287 final DragView dragView = mDragObject.dragView = new DragView(mLauncher, b, registrationX,
291 dragView.setDragVisualizeOffset(new Point(dragOffset));
294 dragView.setDragRegion(new Rect(dragRegion));
297 dragView.show(mMotionDownX, mMotionDownY);
394 if (mDragObject.dragView != null) {
395 mDragObject.dragView.remove()
    [all...]
DragView.java 34 public class DragView extends View {
62 public DragView(Launcher launcher, Bitmap bitmap, int registrationX, int registrationY,
227 mDragLayer.removeView(DragView.this);
Workspace.java     [all...]
Folder.java 626 float[] r = getDragViewVisualCenter(d.x, d.y, d.xOffset, d.yOffset, d.dragView, null);
638 // This is used to compute the visual center of the dragView. The idea is that
642 DragView dragView, float[] recycle) {
652 // top, as the dragRect is in that case taken to be the entire dragView.
658 res[0] = left + dragView.getDragRegion().width() / 2;
659 res[1] = top + dragView.getDragRegion().height() / 2;
    [all...]
FolderIcon.java 304 // This will animate the dragView (srcView) into the new folder
328 // Typically, the animateView corresponds to the DragView; however, if this is being done
385 onDrop(item, d.dragView, null, 1.0f, mInfo.contents.size(), d.postAnimationRunnable);
  /packages/apps/Music/src/com/android/music/
TouchInterceptor.java 327 dragView(x, y);
400 private void dragView(int x, int y) {

Completed in 175 milliseconds