* TODO combine the two constructors
*/
public SimpleInternalDrag(final View view, final Location location) {
this.view = view;
this.location = new Location(location);
offset = view.getAbsoluteLocation();
final Padding targetPadding = view.getPadding();
final Padding containerPadding = view.getView().getPadding();
offset.add(containerPadding.getLeft() - targetPadding.getLeft(), containerPadding.getTop() - targetPadding.getTop());