Eduard Poyda
Results
3
comments of
Eduard Poyda
Yeah, it's easy to fix it. I just add some additional conditions in onInterceptTouchEvent. Before ``` if (!mIgnoreEvents && mViewDragHelper.shouldInterceptTouchEvent(event)) { return true; } ``` After ``` if (!mIgnoreEvents &&...
Ok, I'll do it later )
Okay it's sad, but I find out that my solution works only in my specific case. Meanwhile you can use something like I did in pull request to make it...