将scrollview包裹的内容设置上以下俩个熟悉
android:focusable="true"
android:focusableInTouchMode="true"
例如:
<ScrollView android:layout_width="match_parent" android:layout_height="wrap_content" android:scrollbars="none" > <LinearLayout android:layout_width="wrap_content" android:layout_height="match_parent" android:orientation="vertical" android:focusable="true" android:focusableInTouchMode="true" >