I have a NestedScrollView inside a ScrollView having Relative layout as the parent view. Now, when i run my app on Android 6.0 or API23 its running smoothly and the NestedScrollView is also scrolling. But, when i run my app on the Android 4.2.2 or API17 then everything is working fine except the NestedScrollView. I don't know why this is happening. I went through other SO questions but none was dealing with the kind of problem i have..
This is my layout:-
<ScrollView>
<Other Views/>
<Other Views/>
<NestetScrollView>
<CustomTextView/>
</NestetScrollView>
</ScrollView>
Any help is appreciated.