Parent fragment contains Viewpager2 and a child fragment contains viewpager2 , when this particular child fragment inflate then child fragment Viewpager2 scroll did not work properly.
i have a Main Activity .On which i have 8 fragments to be inflating. One of the fragment is basemomentfragment. This basemomentFragment have a viewpager2 ,along with tab layout, and a adapter for the viewpager2 extending FragmentStateAdapter. This adapter inflates 3 child fragments inside the viewpager2. One of the child fragment name videoFragment have another viewpager2 in its whole view. now when this videofragment gets to the screen , the viewpager2 in the videofragment doesnot scroll properly.But the parent basemomentfragment viewpager2 works fine. THE ISSUE IS HOW TO RUN BOTH THE VIEWPAGER SIMULTANEOUSLY. parent viewpager2 is horizontal. child viewpager is vertical.
I have tried keeping parent viewpager2 set to binding.viewPagerParent.setUserInputEnabled(false); but then parent stop scrolling and to enable the user input it should change position , but postion cant be change cause no it is not taking user input.
IT ACTUALLY WORKS WITH KEEPING PARENT VIEWPAGER2 AS VIEWPAGER(OLD), BUT I WANT TO USE VIEWPAGER2.AND ALSO WANT TO KNOW THE SOLUTION FOR THIS PROBLEM .
after R and D for this issue. I have the solution for my use case. I created a customFrameLayout extending FrameLayout. added it in the child fragment layout XML. Inside Custom Framelayout, I added viewpager2.
Here is the code for the CustomFramLayout.
}
Here is how I have implemented it in my child fragment.
Viewpager2 is the parent fragments Viewpager. This is how you can control a vertical swiping in the child fragment viewpager2 that is being inflated on a parent fragment viewpager2 which has a horizontal swipe. Works for me.