RushDroid
RushDroid

Reputation: 1600

Horizontal Recyclerview inside Viewpager android

I am facing a problem with Recyclerview inside Viewpager fragments.

I have two fragments and both loaded in ViewpagerAdapter. In the second fragment, I have a simple Horizontal Recyclerview. Initially, 1st fragment is loaded in ViewPager and when I swipe right to left on screen it will redirect me to the second fragment.

In the second fragment Recyclerview already loaded. But when I tried to scroll Recyclerview horizontally for more items it is not scrolling it redirects me to the 1st fragment from swipe left to right.

How to allow the user to view more items?

Help me with this problem. Thanks in advance.

Upvotes: 4

Views: 2688

Answers (1)

emilpmp
emilpmp

Reputation: 1736

Try to enable Nested Scrolling for recyclerview

after initialising your recyclerview, add this line of code

your_recyclerview.setNestedScrollingEnabled(true);

Upvotes: 1

Related Questions