ScrollView 与 recyclerView、WebView的滑动冲突

用ScrollView 嵌套recyclerView或者WebView冲突时、可以在recyclerView或者WebView外面嵌套RelativeLayout

如:

//recyclerView
    android:layout_width="match_parent"
    android:layout_height="wrap_content">
            android:id="@+id/webView"
        android:layout_width="match_parent"
        android:scrollbars="none"
        android:layout_height="wrap_content"/>
//recyclerView
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:descendantFocusability="blocksDescendants">

            android:id="@+id/recyclerView"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="@color/color_white" />


你可能感兴趣的:(Android)