*Actually* fix 3377113: Mini homescreen outline wrong color

New and improved! 100% fewer regressions!

Change-Id: I079a7842ecfe7e84c3fd599d6156638588a1d2d0
This commit is contained in:
Patrick Dubroy
2011-03-02 18:40:21 -08:00
parent bd361f7a85
commit b0a6bbeeab
2 changed files with 10 additions and 10 deletions

View File

@@ -557,6 +557,9 @@ public class DragController {
handleMoveEvent(screenX, screenY);
break;
case MotionEvent.ACTION_UP:
// Ensure that we've processed a move event at the current pointer location.
handleMoveEvent(screenX, screenY);
mHandler.removeCallbacks(mScrollRunnable);
if (mDragging) {
drop(screenX, screenY);
@@ -571,10 +574,11 @@ public class DragController {
return true;
}
private boolean drop(float x, float y) {
private void drop(float x, float y) {
final int[] coordinates = mCoordinatesTemp;
DropTarget dropTarget = findDropTarget((int) x, (int) y, coordinates);
final DropTarget dropTarget = findDropTarget((int) x, (int) y, coordinates);
boolean accepted = false;
if (dropTarget != null) {
dropTarget.onDragExit(mDragSource, coordinates[0], coordinates[1],
(int) mTouchOffsetX, (int) mTouchOffsetY, mDragView, mDragInfo);
@@ -582,16 +586,10 @@ public class DragController {
(int) mTouchOffsetX, (int) mTouchOffsetY, mDragView, mDragInfo)) {
dropTarget.onDrop(mDragSource, coordinates[0], coordinates[1],
(int) mTouchOffsetX, (int) mTouchOffsetY, mDragView, mDragInfo);
mDragSource.onDropCompleted((View) dropTarget, mDragInfo, true);
return true;
} else {
mDragSource.onDropCompleted((View) dropTarget, mDragInfo, false);
return true;
accepted = true;
}
} else {
mDragSource.onDropCompleted(null, mDragInfo, false);
}
return false;
mDragSource.onDropCompleted((View) dropTarget, mDragInfo, accepted);
}
private DropTarget findDropTarget(int x, int y, int[] dropCoordinates) {