Drag and drop not working for images

In my case, First i have to select image by long press then again perform long press and move to another element, i tried so many ways but not get success.

TouchAction dragNDrop = new TouchAction(driver)
.longPress(sourceElement).moveTo(targetElement).release();
dragNDrop.perform();

its long press on element but performing drag and drop (screen shows like swipe on selected element), i also tried with wait but not worked.
Can any one pls help me out .