Slidr
Slidr copied to clipboard
fail when set position RIGHT with layout contains RecyclerView, but position LEFT is ok
i have the same problem
If the return value of the checkTouchSlop return function is set to true in the ViewDragHelper library class, it works, but I'm not sure what the return function means. Source line 1198 Please understand that I wrote it with a translator.
@boidmy You saved me. Thank you.
I modified code in "private boolean checkTouchSlop(View child, float dx, float dy)" method.
from
} else if (checkHorizontal && 3 * temp_dy < dx) {
to
} else if (checkHorizontal) {
And now, it works.