alexvasilkov / GestureViews

ImageView and FrameLayout with gestures control and position animation
Apache License 2.0
2.37k stars 384 forks source link

Can't scroll/swipe viewpager2/recyclerview with Gesture layouts inside #175

Closed ParticleCore closed 2 years ago

ParticleCore commented 2 years ago

I am using a recyclerview (also tried viewpager2, which is the same thing) with items that have a Gesture layout in them. If I try to scroll/swipe it never works, the gesture eats the action and the list cannot be scrolled.

I noticed that for the old viewpager there exists the following method enableScrollInViewPager but I cannot find anything equivalent of that for the recyclerview.

If I put the recyclerview inside a Gesture layout everything works just fine, but I need to have a gesture layout for each item, and I am now stuck unable to get that working.

I checked the demo app for examples that could help me with this, but there is no recyclerview with gesture items in them.

Is there a solution for this?

ParticleCore commented 2 years ago

nevermind, I still had another gesture layout on top of the recyclerview and that was causing a conflict with the rest.