我有以下布局:
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<android.support.v4.widget.NestedScrollView
android:id="@+id/nestedscrollview"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<LinearLayout
android:id="@+id/inner_container"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<NESTED VIEWS>
</LinearLayout>
</android.support.v4.widget.NestedScrollView>
<LinearLayout
android:id="@+id/outer_container"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<OUTER VIEWS>
</LinearLayout>
</LinearLayout>
</ScrollView>
我的问题是我希望 ScrollView 先滚动,如果 ScrollView 移动了一点点,否则 NestedScrollView 可以消耗触摸。目前,NestedScrollView 获取触摸事件并仅在 ScrollView 接收触摸之后才使用滚动。我尝试过使用 onInterceptTouchEvent 并进行了试验,但无济于事。任何指针?
这是正确的方法还是我使用其他视图组合?(可能是协调器布局?)