i have an activity ViewPager and which have Tabbed Childs. The childs with recycler View do Scroll. Although When i create a simple fragment with scroll view it does not wor
I managed to solve a similar vertical scrolling problem in my ViewPager doing the following:
I created a separate layout (content_event) with ViewPager:
And created NestedScrollView enclosing preceding layout with "android:fillViewport" set to true:
Maybe it's not quite right but worked for me:)