Tom Seifert
Results
2
comments of
Tom Seifert
The only fix I know so far. Edit: Updated post, keeping the Fragment class is enough.
I think I found a solution: Modify `FlipViewPager.onInterceptTouchEvent()` as following: ``` @Override public boolean onInterceptTouchEvent(MotionEvent ev) { View view = mCurrent.pageView; if (view instanceof ViewGroup) { ViewGroup viewGroup = (ViewGroup)...