Open anagaf opened 8 years ago
Hi, which version are you using? Please make sure it's 1.0.1 and not 1.0.0. Thanks!
I use the latest sources from git
Very well, I'll look into it -- thanks!
@anagaf - hi, I'm going over some of the git issue. I know this one is old but it has got me curious - Have you made any changes to the ItemTouchHelper callback used in the demo app? Have you by any chance enabled items dragging (i.e. position switching), on top of the already enabled item swiping?
Hi
I'm trying to use the decorator with a RecyclerView. If I fling twice quickly an unexpected long press event is dispatched:
I suppose it's because BounceBackState#handleUpOrCancelTouchEvent() and OverScrollingState#handleUpOrCancelTouchEvent() always return true. If touch up event happens during the animation it's missed so the next touch up event is treated as a long press.
It is possible to change these methods to return false?
Thanks, Andrey