I\'m using ListViewDraggingAnimation by DevBytes, but it seems broken on Android Lollipop developer preview 2 (LPX13D). When I drag a row over other rows, those rows will di
I found the problem. It came from this flag. StableArrayAdapter.hasStableId.
StableArrayAdapter.hasStableId
It fix all problem from this view on Lollipop.
@Override public boolean hasStableIds() { return android.os.Build.VERSION.SDK_INT < 20; }