Nestedscrollview Not Scrolling Fully In Coordinatorlayout
I have a NestedSCrollView inside CoordinatorLayout. In the NestedSCrollViewthere is a ViewPager. I put a fragment view in it containing WebView. The problem is that if the text in
Solution 1:
The problem is that ViewPager
does not support wrap_content
. So it has to be precise or match parent
.
Another solution is to override OnMeasure
method of the ViewPager
. Check out this answer.
Post a Comment for "Nestedscrollview Not Scrolling Fully In Coordinatorlayout"