私はすでに試した:scrollViewを無効にするにはどうすればよいですか?
scrollView.setEnable(false);
scrollView.setOnTouchListener(null);
scrollView.requestDisallowInterceptTouchEvent(true);
のが、これらのどれも働いていない...私は理由を理解することができない、それを行うための他の方法はありますか? XMLで
scrollView:
<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>
私はこのようなコメントをどこからでも探しています。ありがとうございます。 –