as I said in my comment.
I canβt think of a normal path to what you are doing. What I would do if I were you is to put a custom view between 2 WebView objects like this:
<ScrollView android:id="@+id/scrollView1" android:layout_width="fill_parent" android:layout_height="fill_parent" > <WebView android:id="@+id/webView1 ... /> <include android:layout="custom_layout" /> <WebView android:id="@+id/webView2 ... /> </ ScrollView>
thepoosh
source share