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

  /packages/apps/Launcher2/src/com/android/launcher2/
DeleteDropTarget.java 196 DragLayer dragLayer = mLauncher.getDragLayer();
198 dragLayer.getViewRectRelativeToSelf(d.dragView, from);
212 dragLayer.animateView(d.dragView, from, to, scale, 1f, 1f, 0.1f, 0.1f,
215 DragLayer.ANIMATION_END_DISAPPEAR, null);
257 private AnimatorUpdateListener createFlingToTrashAnimatorListener(final DragLayer dragLayer,
262 dragLayer.getViewRectRelativeToSelf(d.dragView, from);
286 final DragView dragView = (DragView) dragLayer.getAnimatedView();
314 private DragLayer mDragLayer
    [all...]
DragView.java 46 private DragLayer mDragLayer = null;
245 * @param touchX the x coordinate the user touched in DragLayer coordinates
246 * @param touchY the y coordinate the user touched in DragLayer coordinates
252 DragLayer.LayoutParams lp = new DragLayer.LayoutParams(0, 0);
281 * @param touchX the x coordinate the user touched in DragLayer coordinates
282 * @param touchY the y coordinate the user touched in DragLayer coordinates
Folder.java 408 if (!(getParent() instanceof DragLayer)) return;
418 if (!(getParent() instanceof DragLayer)) return;
477 if (!(getParent() instanceof DragLayer)) return;
801 DragLayer.LayoutParams lp = (DragLayer.LayoutParams) getLayoutParams();
806 DragLayer parent = (DragLayer) mLauncher.findViewById(R.id.drag_layer);
865 DragLayer.LayoutParams lp = (DragLayer.LayoutParams) getLayoutParams();
867 lp = new DragLayer.LayoutParams(0, 0)
    [all...]
AppWidgetResizeFrame.java 21 private DragLayer mDragLayer;
77 LauncherAppWidgetHostView widgetView, CellLayout cellLayout, DragLayer dragLayer) {
84 mDragLayer = dragLayer;
85 mWorkspace = (Workspace) dragLayer.findViewById(R.id.workspace);
203 DragLayer.LayoutParams lp = (DragLayer.LayoutParams) getLayoutParams();
401 final DragLayer.LayoutParams lp = (DragLayer.LayoutParams) getLayoutParams();
414 // DragLayer. We allow the actual handles to be clipped, but we shift the touch region
    [all...]
ButtonDropTarget.java 120 DragLayer dragLayer = mLauncher.getDragLayer();
124 dragLayer.getViewRectRelativeToSelf(this, to);
FolderIcon.java 368 DragLayer dragLayer = mLauncher.getDragLayer();
370 dragLayer.getViewRectRelativeToSelf(animateView, from);
381 scaleRelativeToDragLayer = dragLayer.getDescendantRectRelativeToSelf(this, to);
399 dragLayer.animateView(animateView, from, to, finalAlpha,
402 postAnimationRunnable, DragLayer.ANIMATION_END_DISAPPEAR, null);
DragLayer.java 49 public class DragLayer extends FrameLayout implements ViewGroup.OnHierarchyChangeListener {
78 * Used to create a new DragLayer from XML.
83 public DragLayer(Context context, AttributeSet attrs) {
265 * Determine the rect of the descendant in this DragLayer's coordinates
269 * @return The factor by which this descendant is scaled relative to this DragLayer.
287 * Given a coordinate relative to the descendant, find the coordinate in this DragLayer's
292 * @return The factor by which this descendant is scaled relative to this DragLayer. Caution
521 * @param view The view to be animated. This view is drawn directly into DragLayer, and so
522 * doesn't need to be a child of DragLayer.
Launcher.java 212 private DragLayer mDragLayer;
563 public DragLayer getDragLayer() {
    [all...]
Workspace.java 464 DragLayer dragLayer = mLauncher.getDragLayer();
465 int count = dragLayer.getChildCount();
467 View child = dragLayer.getChildAt(i);
    [all...]
AppsCustomizePagedView.java 690 DragLayer.LayoutParams lp = new DragLayer.LayoutParams(unScaledSize[0],
737 // The widget was inflated and added to the DragLayer -- remove it.
    [all...]

Completed in 103 milliseconds