Is It Possible To Use Nested Scrollview?
I have a ScrollView over the complete view. And in the same view I am having a smaller ScrollView which scrolls some text. The problem I am facing is that when I try scrolling the
Solution 1:
Problem is in putting ScrollView
inside another ScrollView
. It wouldn't work. Try rethink your UI.
Solution 2:
Someone in google releases a library, Synchronized scrolling which makes multiple scrollviews be scrolled sequentially.
This may help you.
Solution 3:
It's a very old question but it's worth to mention that there is NestedScrollView
in Support Library
Solution 4:
There is a new Scroll view introduced in API 22 .Try using NestedScrollView
Post a Comment for "Is It Possible To Use Nested Scrollview?"