要解决ScrollView嵌套的X5WebView。滑动、高度冲突,则首先要解决ScrollView与 X5Webview的滑动冲突,
注意:在添加↓ Webview的时候,把滑动冲去掉,在外层加上relativelayout
<RelativeLayout android:id="@+id/rec"
android:layout_width="match_parent" android:scrollbars="none"
android:layout_height="wrap_content">
<FrameLayout android:id="@+id/webView1" android:layout_width="match_parent"
android:layout_height="wrap_content" android:scrollbars="none" />
</RelativeLayout>
而RecyclerView 则在外层加上
<RelativeLayout
android:layout_below="@id/logView1"
android:layout_width="match_parent" android:layout_height="wrap_content">
<android.support.v7.widget.RecyclerView
android:id="@+id/recy" android:layout_width="match_parent"
android:layout_height="wrap_content"/>
</RelativeLayout>