I've already tried:
scrollView.setEnable(false);
scrollView.setOnTouchListener(null);
scrollView.requestDisallowInterceptTouchEvent(true);
but none of these worked... I can't understand why, is there any other way to do it?
scrollView in xml:
<ScrollView
android:id="@+id/mainPage_scroll"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"
android:layout_alignParentRight="true"
android:focusableInTouchMode="true"
android:layout_below="@+id/tabBar" >
</ScrollView>