Initial implementation of folder reordering

Change-Id: I9f700e71f46e3b91afa96742d9e3890d519c391d
This commit is contained in:
Adam Cohen
2011-06-13 16:55:12 -07:00
parent 61fa4197c4
commit bfbfd26c62
8 changed files with 244 additions and 148 deletions

View File

@@ -34,6 +34,12 @@ public interface DropTarget {
/** Y offset from the upper-left corner of the cell to where we touched. */
public int yOffset = -1;
/** This indicates whether a drag is in final stages, either drop or cancel. It
* differentiates onDragExit, since this is called when the drag is ending, above
* the current drag target, or when the drag moves off the current drag object.
*/
public boolean dragComplete = false;
/** The view that moves around while you drag. */
public DragView dragView = null;